@extends('layouts.app_old') @section('title') Profile - {{$user->name}} @endsection @section('select2css') @endsection @section('content')
@include('partials.alert')
@if(!empty($profile->photo)) @else @endif

{{$user->name}}

{{$profile !== null ? $profile->job_title : ''}}
{{$profile !== null ? $profile->city.', '.$profile->province.', '.$profile->country : ''}}

Overview

{!! $profile !== null ? nl2br(e($profile->overview)) : '' !!}

@foreach($user->skills as $skill) @endforeach
@foreach($educations as $education)
{{$education->course}}
{{$education->school}}
{{ $education->year }}
{!! $education->achievement !!}

@endforeach
@foreach($works as $work)
{{$work->position}}
{{$work->company}}
{{ $work->year }}
{!! nl2br(e($work->description)) !!}

@endforeach
@endsection