@extends('backoffice.layout.master') @section('setSectionTitle', __('Il mio CV')) @section('setContent')

{{ __('Di seguito i dettagli del tuo CV') }}:

@if (!empty($cv))
{{ __('Nome del file') }}: {{ $cv->refFile->file_name }}
{{ __('Caricato il') }}: {{ Carbon\Carbon::parse($cv->created_at)->format('d M Y - H:i') }}
{{ __('Approvazione') }}: @if (!is_null($cv->approved_at)) {{ Carbon\Carbon::parse($cv->approved_at)->format('d M Y - H:i') }} @else {{ __('In fase di verifica') }} @endif
{{ __('Scarica il CV') }} @endif

{{ __('Carica il tuo CV') }}:

@csrf
@if (!empty($cv))

{{ __('Attenzione. Il tuo attuale CV verrĂ  sostituito.') }}

@endif
@endsection