@extends(Theme::getThemeNamespace('views.job-board.account.partials.layout-settings')) @section('content')
{{ __('About') }}

{!! BaseHelper::clean($account->description) !!}

@if($countEducation = $educations->count())

{{ __('Education') }}

@foreach($educations as $education)
{{ $education->specialized ? strtoupper(substr($education->specialized, 0, 1)) : 'E' }}
@if ($education->specialized)
{{ $education->specialized }}
@endif

{{ $education->school }} - ({{ $education->started_at->format('Y') }} - {{ $education->ended_at ? $education->ended_at->format('Y'): __('Now') }})

{!! BaseHelper::clean($education->description) !!}

@if ($countEducation >= 1 && ! $loop->last) @endif
@endforeach
@endif @if($countExperience = $experiences->count())

{{ __('Experience') }}

@foreach( $experiences as $experience)
{{ $experience->position ? strtoupper(substr($experience->position, 0, 1)) : '' }}
@if ($experience->position)
{{ $experience->position }}
@endif

{{ $experience->company }} - ({{ $experience->started_at->format('Y') }} - {{ $experience->ended_at ? $experience->ended_at->format('Y') : __('Now') }})

{!! BaseHelper::clean($experience->description) !!}

@if ($countExperience >= 1 && ! $loop->last) @endif
@endforeach
@endif
@endsection