@if ($resume_file) {{ __('message.download') }} File @endif

@if ($resume)

{{ $resume['first_name'].' '.$resume['last_name'] }}

{{ ($resume['email'] ? $resume['email'] : '') . ($resume['phone1'] ? ", ".$resume['phone1'] : '') . ($resume['phone2'] ? ", ".$resume['phone2'] : '') . ($resume['address'] ? "
".$resume['address'] : '') . ($resume['city'] ? ", ".$resume['city'] : '') . ($resume['state'] ? ", ".$resume['state'] : '') . ($resume['country'] ? ", ".$resume['country'] : '') }}

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

{{ $resume['objective'] }}

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

@if ($resume['experiences'])
    @foreach ($resume['experiences'] as $experience)
  1. {{ $experience['title'] }} - {{ $experience['company'] }}

    ({{ timeFormat($experience['from']) }} - {{ timeFormat($experience['to']) }})

    {{ $experience['description'] }}

  2. @endforeach
@else

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

@endif

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

@if ($resume['qualifications'])
    @foreach ($resume['qualifications'] as $qualification)
  1. {{ $qualification['title'] }} - {{ $qualification['institution'] }}

    ({{ timeFormat($qualification['from']) }} - {{ timeFormat($qualification['to']) }})

    {{ $qualification['marks'] }} Out of {{ $qualification['out_of'] }}

  2. @endforeach
@else

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

@endif

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

@if ($resume['languages'])
    @foreach ($resume['languages'] as $language)
  1. {{ $language['title'] }} ({{ $language['proficiency'] }})

  2. @endforeach
@else

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

@endif

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

@if ($resume['achievements'])
    @foreach ($resume['achievements'] as $achievement)
  1. {{ $achievement['title'] }} ({{ $achievement['type'] }})

    @if ($achievement['date'])

    ({{ $achievement['date'] }})

    @endif @if ($achievement['link'])

    ({{ $achievement['link'] }})

    @endif

    {{ $achievement['description'] }}

  2. @endforeach
@else

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

@endif

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

@if ($resume['references'])
    @foreach ($resume['references'] as $reference)
  1. {{ $reference['title'] }} ({{ $reference['relation'] }})

    @if ($reference['company'])

    ({{ $reference['company'] }})

    @endif @if ($reference['phone'])

    ({{ $reference['phone'] }})

    @endif

    ({{ $reference['email'] }})

  2. @endforeach
@else

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

@endif @else

No Resume Found

@endif