{{ __('domains/identity/field.user.name') }}
{{ $this->user->name }}
{{ __('domains/identity/field.user.email') }}
{{ $this->user->email }}
@if ($this->user->email_verified_at)
{{ __('domains/identity/field.user.verified') }}
@else
{{ __('domains/identity/field.user.unverified') }}
@endif
{{ __('domains/account/field.profile.gender') }}
{{ $this->user->profile?->gender?->label() }}
{{ __('domains/account/field.profile.date_of_birth') }}
{{ $this->user->profile?->date_of_birth->format('d/m/Y') }}
{{ __('domains/account/field.profile.phone_number') }}
{{ $this->user->profile?->phone_number }}