@extends('front.beta.layouts.master') @section('content')

{{$candidate['first_name'].' '.$candidate['last_name']}} : {{$candidate['designation']}}

@if($candidate['skill_titles'] && candidateShow($candidate, 'show_skills')) @if(is_array($candidate['skill_titles'])) @foreach($candidate['skill_titles'] as $st)
{{$st}}
@endforeach @else
{{$candidate['skill_titles']}}
@endif @endif
@if(employerSession()) @endif
@if(candidateShow($candidate, 'show_experiences'))
{{$candidate['experiences_count']}} {{__('message.job_experiences')}}
@endif @if(candidateShow($candidate, 'show_qualifications'))
{{$candidate['qualifications_count']}} {{__('message.qualifications')}}
@endif @if(candidateShow($candidate, 'show_achievements'))
{{$candidate['achievements_count']}} {{__('message.achievements')}}
@endif @if(candidateShow($candidate, 'show_skills'))
{{$candidate['skills_count']}} {{__('message.skills')}}
@endif @if(candidateShow($candidate, 'show_languages'))
{{$candidate['languages_count']}} {{__('message.languages')}}
@endif
{{$candidate['references_count']}} {{__('message.references')}}
@if($resume['experiences'] && candidateShow($candidate, 'show_experiences'))

{{__('message.experiences')}}

@foreach($resume['experiences'] as $exp)

{{dateFormat($exp['from'])}} - @if ($exp['is_current'] == 1 ) {{__('message.currently_working')}} @else {{dateFormat($exp['to'])}} @endif

{{$exp['title']}}

{{$exp['company']}}

{{$exp['description']}}

@endforeach
@endif @if($resume['qualifications'] && candidateShow($candidate, 'show_qualifications'))

{{__('message.qualifications')}}

@foreach($resume['qualifications'] as $qua)

{{dateFormat($qua['from'])}} - {{dateFormat($qua['to'])}}

{{$qua['title']}}

{{$qua['institution']}}

@endforeach
@endif @if($resume['achievements'] && candidateShow($candidate, 'show_achievements'))

{{__('message.achievements')}}

@foreach($resume['achievements'] as $ach)

{{dateFormat($ach['date'])}}

{{$ach['title']}}

{{$ach['type']}}

{{$ach['description']}}

@endforeach
@endif @if($resume['skills'] && candidateShow($candidate, 'show_skills'))

{{__('message.skills')}}

@foreach($resume['skills'] as $sk)

{{$sk['title']}}

@endforeach
@endif @if($resume['languages'] && candidateShow($candidate, 'show_languages'))

{{__('message.languages')}}

@foreach($resume['languages'] as $lan)

{{$lan['title']}}

@endforeach
@endif @if($similar) @endif

{{__('message.candidate_overview')}}

@php $thumb = candidateThumb($candidate['image']); @endphp
@if(candidateShow($candidate, 'show_bio'))

{{$candidate['bio'] ? $candidate['bio'] : '----'}}

@endif
@if(candidateShow($candidate, 'show_location'))
{{__('message.location')}} : {{$candidate['city'] ? $candidate['city'] : ''}}{{$candidate['country'] ? ', '.$candidate['country'] : ''}}
@endif @if(candidateShow($candidate, 'show_phone'))
{{__('message.phone')}} : {{$candidate['phone1'] ? $candidate['phone1'] : '---'}}
@endif @if(candidateShow($candidate, 'show_email'))
{{__('message.email')}} : {{$candidate['email'] ? $candidate['email'] : '---'}}
@endif
{{__('message.member_since')}} : {{dateFormat($candidate['created_at'])}}
@if(candidateShow($candidate, 'show_social_links'))
@endif
@endsection