@extends('student.layouts.app') @section('title', 'Informasi Akun | Career Development and Consultation (CDC)') @section('header')

Profil

@endsection @section('content')
image
{{ $user->name }} {{-- Verified --}}
{{ ucfirst($user->role === 'admin' ? 'Pegawai' : ($user->role === 'student' ? 'Mahasiswa' : $user->role)) }} {{ $user->email }}

Informasi Akun

Perbarui Informasi
{{ Str::ucfirst($user->name) }}
{{ $user->email }}
{{ 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)

Perhatian!

Harap lengkapi informasi akun Anda. Klik Lengkapi Informasi Akun.
@endif
@endsection