@extends(Theme::getThemeNamespace('views.job-board.account.partials.layout-settings')) @section('content')
{{ __('Add Experience') }}
@forelse($experiences as $experience)
{{ $experience->started_at->format('Y') }} - {{ $experience->ended_at ? $experience->ended_at->format('Y') : __('Now') }}
{{ $experience->company }} @if($experience->position) ({{ $experience->position }}) @endif

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

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