@extends('layouts.user') @section('title', 'Account Settings') @section('content')

Account Settings

@if(session('success')) @endif @if(session('error')) @endif @if(session('status') === 'password-updated') @endif
Change Password
@csrf
@error('email')
{{ $message }}
@enderror
We'll send the password reset instructions to this email address
What happens next?
  1. You'll receive an email with a secure reset link
  2. Click the link to create your new password
  3. You'll be logged out automatically
  4. Login with your new password
Can request once every 5 minutes
Active Roles
@if($user->activeRoles->count() > 0)
@foreach($user->activeRoles as $role)
{{ ucfirst($role->name) }} @if($role->name === (request()->route('role') ?? 'athlete')) Current @else Switch @endif
@endforeach
@else

No active roles assigned

@endif
Account Information

Email

{{ $user->email }}

Mobile

{{ $user->mobile ?? 'Not provided' }}

Unique ID

{{ $user->u_id ?? 'Not assigned' }}

Member Since

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

@push('scripts') @endpush @endsection