@extends('layouts.admin') @section('page_kicker', 'Control center') @section('page_title', 'Super admin dashboard') @section('content')

Hospitals

{{ $stats['hospitals'] }}

Independent doctors

{{ $stats['independent_doctors'] }}

Hospital doctors

{{ $stats['hospital_doctors'] }}

Users

{{ $stats['users'] }}

Revenue

${{ number_format((float) $stats['revenue'], 2) }}

Create hospital

Provision a new facility account.

@csrf

Create independent doctor

Telehealth provider outside a hospital org.

@csrf

Hospitals

Approve, reject, suspend, or reactivate.

Doctors

Verify credentials or toggle access.

Users & roles

Quick role changes and activation toggles.

@foreach($users as $user)

{{ $user->name }} ({{ $user->email }})

Current: {{ $user->role }}{{ $user->doctor_type ? ' · '.$user->doctor_type : '' }} · {{ $user->is_active ? 'active' : 'inactive' }}

@csrf @method('PATCH')
@csrf @method('PATCH')
@endforeach

System settings

Payment, AI, and platform keys.

@csrf
@foreach($settings as $setting)
{{ $setting->setting_key }} : {{ $setting->setting_value }}
@endforeach
@endsection