User Details

{{ $user->name }}

Account Information

Email
{{ $user->email }}
Role
{{ \App\Models\User::roles()[$user->role] ?? str($user->role)->headline() }}
Email Verification
{{ $user->hasVerifiedEmail() ? 'Verified' : 'Not verified' }}
@if ($user->google_id)
Google Account
Linked
@endif
Avatar
{{ $user->avatar_type ?? 'default' }}
Support Team Access
{{ $user->isSupportTeamMember() ? 'Enabled' : 'No' }}
Status
{{ $user->status }}
Trades Created
{{ $user->trades_count }}
Registered
{{ $user->created_at->format('M d, Y H:i') }}
@csrf @method('PATCH')
@unless ($user->hasVerifiedEmail())
@csrf @method('PATCH')
@endunless
@csrf @method('DELETE')

Recent Trades

@forelse ($trades as $trade) @empty @endforelse
Symbol Status P/L Action
{{ $trade->symbol }} {{ $trade->status }} {{ $trade->profit_loss ?? 'N/A' }} View
This user has no trades yet.
@if ($trades->hasPages())
{{ $trades->links() }}
@endif