@extends('layouts.admin') @section('title', 'User Management') @section('breadcrumb', 'User Management') @section('content')

Manage Users

Manage customer accounts

Add New User
Clear
@if($users->count() > 0)
@foreach($users as $user) @endforeach
User Joined Actions
{{ substr($user->name, 0, 1) }}
{{ $user->name }}
{{ $user->email }}
@if($user->phone)
{{ $user->phone }}
@endif
{{ $user->created_at->ist()->format('M d, Y') }}
@csrf @method('DELETE')
{{ $users->links() }}
@else

No users found

Get started by creating a new user.

@endif
@endsection