@extends('pages.index') @section('admin_content')

Setting Akun

Kelola email, foto profil, dan password akun Anda.

@if (session('success')) @endif @if ($errors->any()) @endif
Ganti Email & Gambar

Perbarui email aktif dan foto profil akun.

@csrf
@php $defaultAvatar = 'https://ui-avatars.com/api/?name=AD&background=0086c1&color=fff'; $currentAvatar = $defaultAvatar; if (isset($user) && !empty($user->profile_picture)) { $profilePath = public_path('storage/profile/' . $user->profile_picture); if (file_exists($profilePath)) { $currentAvatar = asset('storage/profile/' . $user->profile_picture); } } @endphp Preview Foto @if(isset($user) && !empty($user->profile_picture)) @endif
Ganti Password

Gunakan password yang kuat dan mudah Anda ingat.

@csrf
@endsection