@extends('vcardTemplates.vcard11.app') @section('title') {{__('auth.home')}} @endsection @section('page_css') @endsection @section('page_name') {{__('auth.about')}} @endsection @section('content')

{{ $vcard->occupation }}

{{ $vcard->job_title }}

{{ ucwords($vcard->company) }}

{{ strtoupper($vcard->first_name.' '.$vcard->last_name) }}

{{__('messages.common.description')}}

{!! $vcard->description !!}

@if ((isset($managesection) && $managesection['contact_list']) || empty($managesection)) @if(isset($vcard->first_name))
@if($vcard->location)
{{__('messages.user.location')}} : {!! ucwords($vcard->location) !!}
@endif @if($vcard->dob)
{{__('messages.vcard.dob')}} : {{ $vcard->dob }}
@endif @if($vcard->phone || $vcard->alternative_phone)
{{__('auth.contact')}} :
@endif {{-- MY PORTFOLIO--}}
@endif @endif
{{--
--}} {{--
--}} {{--

--}} {{-- 0--}} {{--

--}} {{--

FINISHED PROJECTS

--}} {{--
--}} {{--
--}} {{--

--}} {{-- 0--}} {{--

--}} {{--

WORKING HOURS

--}} {{--
--}} {{--
--}} {{--

--}} {{-- 0--}} {{--

--}} {{--

AWARDS WON

--}} {{--
--}} {{--
--}}
@if ((isset($managesection) && $managesection['services']) || empty($managesection)) @if(checkFeature('services') && $vcard->services->count())

{{__('messages.services')}}

@endif @endif @if(checkFeature('products') && $vcard->products->count()) @if ((isset($managesection) && $managesection['products']) || empty($managesection))

{{__('messages.feature.products')}}

@endif @endif {{--testimonial--}} @if ((isset($managesection) && $managesection['testimonials']) || empty($managesection)) @if(checkFeature('testimonials') && $vcard->testimonials->count())
@php $testimonialCount = 1; $style = 'style'; $marginBottom = 'margin-bottom'; @endphp

{{__('messages.feature.testimonials')}}

@foreach($vcard->testimonials as $testimonial)
{{ $testimonialCount++ }}
{{ucwords( $testimonial->name) }}

"{!! $testimonial->description !!} "

@endforeach
@endif @endif @if ((isset($managesection) && $managesection['insta_embed']) || empty($managesection)) @if (checkFeature('instagramEmbed') && $vcard->instagramEmbed->count())
@php $testimonialCount = 1; $style = 'style'; $marginBottom = 'margin-bottom'; @endphp

{{__('messages.feature.insta_embed')}}

@foreach ($vcard->InstagramEmbed as $InstagramEmbed) @if ($InstagramEmbed->type == 0)
{!! $InstagramEmbed->embedtag !!}
@endif @endforeach
@foreach ($vcard->InstagramEmbed as $InstagramEmbed) @if ($InstagramEmbed->type == 1)
{!! $InstagramEmbed->embedtag !!}
@endif @endforeach
@endif @endif @if ((isset($managesection) && $managesection['iframe']) || empty($managesection)) @if (checkFeature('iframes') && $vcard->iframes->count())

{{__('messages.vcard.iframe')}}

@foreach ($vcard->iframes as $iframe)
@endforeach
@endif @endif @if ((isset($managesection) && $managesection['galleries']) || empty($managesection)) @if(checkFeature('gallery') && $vcard->gallery->count())

{{__('messages.feature.gallery')}}

@foreach($vcard->gallery as $file) @php $infoPath = pathinfo(public_path($file->gallery_image)); $extension = $infoPath['extension']; @endphp
@if($file->type == App\Models\Gallery::TYPE_IMAGE) @elseif($file->type == App\Models\Gallery::TYPE_FILE) @if($extension=='pdf') @endif @if($extension=='xls') @endif @if($extension=='csv') @endif @if($extension=='xlsx') @endif @elseif($file->type == App\Models\Gallery::TYPE_VIDEO)
@elseif($file->type == App\Models\Gallery::TYPE_AUDIO)
Album Cover
@else @endif
@endforeach
@endif @endif
@if(checkFeature('advanced')) @if(checkFeature('advanced')->hide_branding && $vcard->branding == 0) @if($vcard->made_by) made_by_url)) href="{{$vcard->made_by_url}}" @endif class="text-center text-decoration-none text-white" target="_blank"> {{ __('messages.made_by') }} {{ $vcard->made_by }} @endif @else
{{ __('messages.made_by') }} {{ $setting['app_name'] }}
@endif @endif
@if ((isset($managesection) && $managesection['news_latter_popup']) || empty($managesection)) @endif @endsection