@extends(Theme::getThemeNamespace('views.job-board.account.partials.layout-settings')) @section('content')
{{ __('Add Education') }}
@forelse($educations as $education)
{{ $education->started_at->format('Y') }} - {{ $education->ended_at ? $education->ended_at->format('Y'): __('Now') }}
{{ $education->school }} @if ($education->specialized) ({{ $education->specialized }}) @endif

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

@csrf @method('DELETE')
@empty @endforelse
@endsection