@extends('admin.layout.content') @section('content')
{{-- Flash Messages --}} @if (session('success')) @endif @if (session('error')) @endif

Profil Admin

Kelola informasi profil dan foto Anda

{{-- Avatar Card --}}
@if($profile && $profile->avatar_url) Foto Profil @else @php $initial = strtoupper(substr($user->username ?? 'A', 0, 1)); @endphp
{{ $initial }}
@endif {{-- Pencil / Edit Button --}}
{{-- Avatar Action Buttons --}}
@csrf
@if($profile && $profile->avatar_url)
@csrf
@endif
{{-- Selected file preview --}}
{{ $user->username ?? '-' }}
{{-- Profile Info Card --}}
person Informasi Profil
@csrf @method('PUT')
{{-- Tombol Simpan --}}
@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@endsection