@extends('layouts.app') @section('page-title', 'User Management') @section('content')

Users List

Add New User
@forelse($users as $user) @empty @endforelse
Name Email Role Created At Actions
{{ substr($user->name, 0, 1) }}
{{ $user->name }}
{{ $user->email }} {{ $user->role }} {{ $user->created_at->format('M d, Y') }} @if(auth()->id() !== $user->id)
@csrf @method('DELETE')
@endif
No users found.
{{ $users->links() }}
@endsection