{{ __('User Management') }}

All Users

@forelse ($users as $user) @empty @endforelse
User Contact Role Actions
{{ $user->name }} Profile Photo
Joined {{ $user->created_at->format('d M Y') }}
{{ $user->email }}
{{ $user->phone ?? 'No phone' }}
{{ ucfirst($user->role) }}
@csrf @method('DELETE')
@if(request('search')) No users found matching "{{ request('search') }}" @else No users available. Create your first user. @endif
{{ $users->links('vendor.pagination.tailwind') }}