@extends('admin.layouts.app') @section('title', 'Profile') @section('subtitle', 'Your account details') @section('topbar-actions') Edit Profile @endsection @push('styles') @endpush @section('content')
{{-- Avatar Card --}}
@if($user->profile_image) {{ $user->name }} @else
{{ strtoupper(substr($user->name, 0, 1)) }}
@endif
{{ $user->name }}
{{ $user->email }}
{{ ucfirst($user->role) }}
Member since {{ $user->created_at->format('M Y') }}
Chapter {{ $user->chapter_name ?? '—' }}
{{-- Details Card --}}
Account Information
Full Name
{{ $user->name }}
Email Address
{{ $user->email }}
Phone
@if($user->phone)
{{ $user->phone }}
@else
Not provided
@endif
@endsection