@extends('layouts.admin') @section('title', 'Manage Users | Smart Dermatology') @section('page_title', 'User Management') @section('page_subtitle', 'View registered members and their assigned panel access.') @section('content')
@forelse ($users as $user) @empty @endforelse
User Details Status Role Registered Actions
{{ strtoupper(substr($user->name, 0, 2)) }}
{{ $user->name }}
{{ $user->email }}
Active {{ $user->user_type }} {{ $user->created_at?->format('d M Y') }}
No users available.
@endsection