@extends('layouts.admin') @section('content')

Users Management

Manage user accounts and roles

@forelse($users as $user) @empty @endforelse
User Role Status Joined Actions
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
Active {{ $user->created_at->format('M j, Y') }}
@csrf @method('DELETE')

No users found

@if($filterType === 'unassigned') No unassigned users found. @else Get started by creating a new user. @endif

@if($users->hasPages())
{{ $users->links() }}
@endif
@endsection @push('scripts') @endpush