@extends('layouts.admin') @section('title', 'User Directory') @section('header_title', 'Global User Intelligence') @section('content')

System User Directory

Managing {{ $users->total() }} Registered Profiles
@foreach($users as $user) @endforeach
Profile Identity Platform Role Auth Method Account Status Registration Timeline Directory Actions
{{ substr($user->name, 0, 1) }}
{{ $user->name }}
{{ $user->email }}
{{ strtoupper($user->role) }} OAUTH / EMAIL VERIFIED {{ $user->created_at->format('M d, Y') }}
Edit
@csrf
{{ $users->links() }}
@endsection