@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)
  • {{ $experience['title'] }} - {{ $experience['company'] }}

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

    {{ $experience['description'] }}

  • @endforeach
@else

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

@endif

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

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

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

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

  • @endforeach
@else

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

@endif

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

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

  • @endforeach
@else

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

@endif

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

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

    @if ($achievement['date'])

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

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

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

    @endif

    {{ $achievement['description'] }}

  • @endforeach
@else

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

@endif

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

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

    @if ($reference['company'])

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

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

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

    @endif

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

  • @endforeach
@else

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

@endif

@else @endif