System Overview

Welcome, {{ $admin->name }}. Monitoring active directories, credentials, and SSO logins.

Total Registrations
{{ $stats['total_users'] }}
👥
Administrators
{{ $stats['admins_count'] }}
🛡️
Blocked Accounts
{{ $stats['blocked_count'] }}
🚫
Registered Apps
{{ $stats['apps_count'] }}
📦
@if(session('error'))
⚠️
{{ session('error') }}
@endif @if(session('success'))
{{ session('success') }}
@endif

Manage System Services

@csrf

Registered Service Apps

@forelse($apps as $app) @empty @endforelse
Service Tag URL Action
{{ $app->name }}
{{ $app->tag }} {{ $app->url }}
@csrf @method('DELETE')
No registered service apps.

Restrict User Access

@csrf

Active Access Restrictions

@forelse($restrictions as $res) @empty @endforelse
User Email Restricted App Action
{{ $res->email }} @if($res->app)
{{ $res->app->name }}
@else App Deleted @endif
@csrf @method('DELETE')
No active restrictions. All apps visible to all users.
User Accounts Directory
Showing registered system entities and block controls
@forelse($users as $usr) @empty @endforelse
User Account Assigned Role Authentication Type Linked On Operations
@if($usr->avatar) {{ $usr->name }} @else
{{ strtoupper(substr($usr->name, 0, 1)) }}
@endif
{{ $usr->name }} @if($usr->is_blocked) Blocked @else Active @endif
{{ $usr->email }}
@if($usr->role === 'admin') Admin @else User @endif @if($usr->microsoft_id)
Microsoft OAuth
@else Local Password @endif
{{ $usr->created_at ? $usr->created_at->format('Y-m-d H:i') : 'N/A' }} @if($usr->id !== $admin->id)
@csrf
@else You (Admin) @endif
No registered accounts found in the database.