@extends('layouts.admin') @section('title', 'Users') @section('content')

Users

Manage all user accounts in the system

@forelse($users as $user) @empty @endforelse
User Status Created Last Active Actions
{{ substr($user->name, 0, 1) }}
{{ $user->name }}
{{ $user->email }}
Active {{ $user->created_at->format('M d, Y') }} {{ $user->updated_at->diffForHumans() }}
@if($user->id !== Auth::id())
@csrf @method('DELETE')
@endif

No users found

Get started by creating a new user.

@if($users->hasPages())
{{ $users->links() }}
@endif
@endsection