@extends('layouts.main') @section('content')
{{$candidate->first_name.' '.$candidate->last_name}}
@foreach($candidate->social_accounts as $account) @endforeach
@if($candidate->skills)
@foreach($candidate->skills as $skill) {{$skill->name}} @endforeach
@endif
{{trans('app.recruitment.reports.show.personal_details')}}

{{$candidate->first_name}}

{{$candidate->last_name}}

{{$candidate->email}}

{{gender($candidate->gender)}}

{{$candidate->birth_date}}

{{$candidate->notes}}

{{$candidate->how_did_they_hear}}

@if($candidate->contact_details)
{{trans('app.pim.employees.contact_details.main')}}

{{$candidate->contact_details->address1}}

{{$candidate->contact_details->address2}}

{{$candidate->contact_details->city}}

{{$candidate->contact_details->state}}

{{$candidate->contact_details->zip}}

{{$candidate->contact_details->country}}

{{$candidate->contact_details->phone1}}

{{$candidate->contact_details->phone2}}

{{$candidate->contact_details->phone3}}

@endif @if(@$candidate->experience[0])
{{trans('app.pim.employees.qualifications.work_experience.main')}}
@foreach($candidate->experience as $experience)

{{$experience->company->name}}

{{$experience->job_title}}

{{$experience->start_date}}

{{$experience->end_date}}

{{$experience->comment}}

@endforeach
@endif @if(@$candidate->education[0])
{{trans('app.pim.employees.qualifications.education.main')}}
@foreach($candidate->education as $education)

{{get_education_type_name($education->type)}}

{{$education->education_institution->name}}

{{$education->major}}

{{$education->year}}

{{$education->grade}}

{{$education->start_date}}

{{$education->end_date}}

@endforeach
@endif @if(@$candidate->languages[0])
{{trans('app.pim.employees.qualifications.languages.main')}}
@foreach($candidate->languages as $language)

{{$language->language->name}}

{{get_language_skill_name($language->skill)}}

{{get_language_level_name($language->level)}}

@endforeach
@endif @if($candidate->user_preferences)
{{trans('app.pim.candidates.preferences.main')}}

{{format_price($candidate->user_preferences->salary)}}

{{$candidate->user_preferences->contractType->name}}

{{get_location_name($candidate->user_preferences->location)}}

{{$candidate->user_preferences->comments}}

@endif @if($candidate->documents)
{{trans('app.pim.employees.documents.main')}}
@foreach($candidate->documents as $document) @endforeach
@endif
@endsection @section('additionalCSS') @endsection