Profil Saya

Sistem Pemilihan Jurusan

{{ Auth::user()->name }} ← Kembali ke Dashboard
{{-- Success Message --}} @if (session('status') === 'profile-updated')
✅ Profil berhasil diperbarui!
@endif {{-- ========== PROFILE HEADER CARD - HORIZONTAL ========== --}}
@if($user->foto) Foto Profil @else
{{ strtoupper(substr($user->name, 0, 1)) }}
@endif

{{ $user->name }}

NIS

{{ $user->nis ?? '-' }}

Email

{{ $user->email }}

Kelompok

@if($user->kelompok_asal) {{ $user->kelompok_asal }} @else

-

@endif

Terdaftar

{{ $user->created_at->format('d M Y') }}

{{-- ========== INFORMASI PROFIL ========== --}}

📝 Edit Informasi Profil

Perbarui data diri dan foto profil Anda.

@csrf @method('patch') {{-- Foto Profil Upload --}}

Format: JPG, PNG, GIF. Maks 2MB.

@error('foto')

{{ $message }}

@enderror
{{-- Nama --}}
@error('name')

{{ $message }}

@enderror
{{-- Email --}}
@error('email')

{{ $message }}

@enderror
{{-- NIS --}}
@error('nis')

{{ $message }}

@enderror
{{-- Kelompok Asal --}}
@error('kelompok_asal')

{{ $message }}

@enderror
{{-- ========== UBAH PASSWORD ========== --}}

🔐 Ubah Password

Pastikan akun Anda menggunakan password yang kuat dan aman.

@if (session('status') === 'password-updated')
✅ Password berhasil diubah!
@endif
@csrf @method('put')
@error('current_password', 'updatePassword')

{{ $message }}

@enderror
@error('password', 'updatePassword')

{{ $message }}

@enderror
@error('password_confirmation', 'updatePassword')

{{ $message }}

@enderror