@extends('layouts.app') @section('title', 'Meu perfil') @section('content')

Olá, {{ $candidate->name }}

Dados

  • E-mail: {{ $candidate->email }}
  • CPF: {{ $candidate->cpf }}
  • Nascimento: {{ $candidate->birth_date?->format('d/m/Y') ?? '—' }}
  • Gênero: {{ $candidate->gender->name ?? '—' }}
  • Etnia: {{ $candidate->ethnicity->name ?? '—' }}
@endsection