@section('title', 'User Details') @section('content')

User Details

Comprehensive user information and activity

User Information
Full Name

{{ $user->name ?? 'John Doe' }}

Email Address

{{ $user->email ?? 'john.doe@example.com' }}

Phone Number

{{ $user->phone ?? '+1 (555) 123-4567' }}

Date of Birth

{{ $user->date_of_birth ? $user->date_of_birth->format('M d, Y') : 'Not provided' }}

Belt Rank

{{ $user->belt_rank ?? 'White Belt' }}

Status

@if(($user->status ?? 'pending') == 'approved') Approved @elseif(($user->status ?? 'pending') == 'pending') Pending @else Rejected @endif

Address

{{ $user->address ?? 'Address not provided' }}

Member Since

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

Last Login

{{ $user->last_login_at ? $user->last_login_at->diffForHumans() : 'Never' }}

Recent Activity
@extends('layouts.state') @section('title', 'User Details') @section('content')

User Details

View complete member information

{{ substr($user->name, 0, 1) }}
{{ $user->name }}

{{ $user->email }}

@if($user->status == 'active') Active Member @elseif($user->status == 'inactive') Inactive @else Suspended @endif
Member Information
Personal Information
Full Name: {{ $user->name }}
Email: {{ $user->email }}
Phone: {{ $user->phone ?? 'Not provided' }}
Date of Birth: {{ $user->date_of_birth ?? 'Not provided' }}
Training Information
Current Belt: {{ $user->belt_level ?? 'White Belt' }}
Program: {{ $user->program ?? 'Adult Program' }}
Experience: {{ $user->experience_years ?? 0 }} years
Instructor: {{ $user->instructor ?? 'Master Kim' }}
@endsection
Profile Updated

User updated their profile information

2 hours ago
Event Registration

Registered for Spring Tournament

1 day ago
Login Activity

User logged into the system

3 days ago
User Statistics

5

Events Joined

3

Certificates

2

Belt Tests

8

Total Sessions

Quick Actions
@endsection