@extends('backoffice.layout.master') @section('setSectionTitle', __('Dettaglio Candidato')) @section('setSectionButton') {{ __('Torna alla Lista') }} @endsection @section('setContent')

{{ $candidate->first_name }} {{ $candidate->last_name }}

{{ $candidate->refUser->email }}
@if($candidate->refUser->is_active) {{ __('Account Attivo') }} @else {{ __('Account Disattivato') }} @endif

{{ $candidate->refCandidatesCountriesInterests->count() }}

{{ __('Paesi di Interesse') }}
{{ __('Informazioni Personali') }}
@csrf @method('PUT')

{{ __('Indirizzo di Residenza') }}
{{ __('Paesi di Interesse') }}
@if($candidate->refCandidatesCountriesInterests->count() > 0)
    @foreach($candidate->refCandidatesCountriesInterests as $interest)
  • {{ $interest->refLocationCountry->name }}
    @csrf @method('DELETE')
  • @endforeach
@else

{{ __('Nessun paese di interesse aggiunto.') }}

@endif
{{ __('Aggiungi Paese') }}
@csrf
@endsection @section('setBodyEnd') @endsection