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

Users

Manage admins, content creators, and readers in GuideData.

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif
@foreach($typeOptions as $type => $label)
{{ $label }}
{{ number_format($counts[$type] ?? 0) }}
@endforeach
Clear
@forelse($users as $user) @empty @endforelse
ID Name Username / Email Type Clinic Created Actions
{{ $user->id }} {{ $user->name }} {{ $user->email }} {{ $user->typeLabel() }} {{ $user->clinic ?: '—' }} {{ optional($user->created_at)->format('Y-m-d') ?? '—' }} Edit
@csrf @method('DELETE')
No users found.
{{ $users->links() }}
@endsection