@extends('layouts.generic') @section('page_title', $profile->displayName()) @section('page_description', $profile->publicHeadline()) @section('share_url', $profileUrl) @section('share_title', $profile->displayName().' - '.getSetting('site.name')) @section('share_description', $profile->publicHeadline()) @section('share_type', 'profile') @section('share_img', GenericHelper::getOGMetaImage()) @section('meta') @if($isPreview) @endif @stop @section('styles') {!! Minify::stylesheet([ '/css/pages/public-candidate-profile.css', ])->withFullUrl() !!} @stop @section('content')
{{$profile->displayName()}}

{{$profile->displayName()}}

@if($profile->open_to_work) {{__('Open to work')}} @endif

{{$profile->publicHeadline()}}

@if($profile->desired_job_titles)
@foreach($profile->desired_job_titles as $title) {{$title}} @endforeach
@else

{{__('Target roles will appear here once added.')}}

@endif
@if($resumeUrl) {{__('View CV')}} @endif @if($isPreview) {{__('Edit profile')}} @else {{__('Browse jobs')}} @endif
@foreach($summaryItems as $item)
{{$item['label']}}
{{$item['value'] ?: __('Not added')}}
@endforeach

{{__('About')}}

@if($profile->bio)

{!! nl2br(e($profile->bio)) !!}

@else

{{__('This talent profile is still being completed.')}}

@endif

{{__('Skills and focus')}}

@if($profile->open_to_work) {{__('Open to work')}} @endif
@if($profile->desired_skills) @foreach($profile->desired_skills as $skill) {{$skill}} @endforeach @else

{{__('Skills will appear here once added.')}}

@endif

{{__('Preferences')}}

@if($profile->desired_locations)
{{__('Locations')}}
{{implode(', ', $profile->desired_locations)}}
@endif @if($profile->preferenceLabel($profile->remote_preference))
{{__('Work mode')}}
{{$profile->preferenceLabel($profile->remote_preference)}}
@endif @if($profile->preferenceLabel($profile->availability))
{{__('Availability')}}
{{$profile->preferenceLabel($profile->availability)}}
@endif @if($profile->preferenceLabel($profile->seniority))
{{__('Seniority')}}
{{$profile->preferenceLabel($profile->seniority)}}
@endif @if($salary)
{{__('Compensation')}}
{{$salary}}
@endif @if(!$profile->desired_locations && !$profile->remote_preference && !$profile->availability && !$profile->seniority && !$salary)

{{__('Preferences will appear here once added.')}}

@endif
@if(!$isPreview)

{{__('Candidate profile')}}

{{__('Find roles that match this profile or keep exploring current openings.')}}

{{__('Back to jobs')}}
@endif
@endsection