Settings

Manage your account settings and preferences

{{-- Success/Error Messages --}} @if(session('success'))

{{ session('success') }}

@endif @if($errors->any())

There were some errors:

    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Profile Settings --}}

Profile Information

@csrf
{{-- Password Settings --}}

Change Password

@csrf
{{-- Preferences --}}

Preferences

{{-- System Information --}}

System Information

View Details
Role: {{ ucfirst($user->role ?? 'pastor') }}
Last Login: {{ $user->last_login_at ? $user->last_login_at->diffForHumans() : 'Never' }}
Account Created: {{ $user->created_at->format('M j, Y') }}
Email Verified: {{ $user->email_verified_at ? 'Yes' : 'No' }}