> ## Documentation Index
> Fetch the complete documentation index at: https://docs.younegotiate.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Super Admin Users

> A new operations manager needs Super Admin access. An authorized Super Admin creates the account, and the new user can log in only to Super Admin workflows.

## Real-World Example

A new operations manager needs Super Admin access. An authorized Super Admin creates the account, and the new user can log in only to Super Admin workflows.

## Visual Flow

```mermaid placement="top-right" actions={true} theme={"system"}
flowchart TD
    A["Authorized Super Admin creates user"] --> B["Super Admin account is saved"]
    B --> C["User gets login path"]
    C --> D["New user logs into Super Admin"]
    classDef default fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef actor fill:#E0F2FE,stroke:#0284C7,stroke-width:2px,color:#0C4A6E;
    classDef system fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef decision fill:#FEF3C7,stroke:#D97706,stroke-width:2px,color:#78350F;
    classDef risk fill:#FEE2E2,stroke:#DC2626,stroke-width:2px,color:#7F1D1D;
    classDef outcome fill:#DCFCE7,stroke:#16A34A,stroke-width:2px,color:#14532D;
    class A actor;
    class B,D outcome;
    class C system;
    linkStyle default stroke:#94A3B8,stroke-width:2px;
```

## How It Should Work

* It should allow authorized management of Super Admin users.
* It should keep Super Admin users separate from creditor and EcoMail Hub users.
* It should remove or disable access when a Super Admin user should no longer log in.

## How It Should Not Work

* It should not allow unauthorized users to create Super Admin accounts.
* It should not accidentally create a creditor or EcoMail Hub user instead.
* It should not leave removed users with platform-level access.

## Developer Notes

* This is high-risk access management.
* Auditability and guard separation matter more here than convenience.

## Related App Areas

* `app/Livewire/Creditor/ManageH2HUsers`
* `routes/superadmin.php`
* `routes/superadmin/auth.php`
