@if ($user->name)
@lang('validation.attributes.name')
{{ $user->name }}
@endif
@if ($user->first_name)
@lang('validation.attributes.first_name')
{{ $user->first_name }}
@endif
@if ($user->last_name)
@lang('validation.attributes.last_name')
{{ $user->last_name }}
@endif
@if ($user->phone)
@lang('validation.attributes.phone')
{{ $user->phone }}
@endif
@if ($user->email)
@lang('validation.attributes.email')
{{ $user->email }}
@endif
@if ($user->birthdate)
@lang('validation.attributes.birthdate')
{{ $user->birthdate }}
@endif
@if ($user->passport_number)
@lang('validation.attributes.passport_number')
{{ $user->passport_number }}
@endif
@if ($user->passport_country)
@lang('validation.attributes.passport_country')
@lang("countries.{$user->passport_country}")
@endif
@if ($user->residence_country)
@lang('validation.attributes.residence_country')
@lang("countries.{$user->residence_country}")
@endif