{{ Str::ucfirst($user->name) }}
{{ Str::ucfirst($user->student->nim ?? '-') }}
{{ Str::ucfirst($user->student->department->department_name ?? '-') }}
{{ Str::ucfirst($user->student->faculty ?? '-') }}
{{ Str::ucfirst($user->gender ?? '-') }}
@if ($age === 0)
{{ $user->birth_date ?? '-' }}
@else
{{ $user->birth_date ?? '-' }} /
{{ $age }} Tahun
@endif
{{ $user->phone ?? '-' }}
{{ Str::ucfirst($user->address ?? '-') }}
@if ($profileCompletion)
@endif