@extends('adminlte::page') @section('title', 'Platform Users') @include('partials.ui-polish') @section('content_header')

Platform Users

Manage Platform Super Admin and NGO Admin accounts only
Security
@stop @section('content') @if(session('success')) {{ session('success') }} @endif @if($errors->any()) @endif
@csrf
@foreach($organizations as $organization) @endforeach
@foreach($roles as $role) @endforeach
Platform Super Admin can see the number of users per tenant in Organizations. Individual tenant staff accounts are managed inside the NGO workspace and are not shown here.
@foreach($organizations as $organization) @endforeach
@forelse($users as $user) @empty @endforelse
User Organization Role Status Update Security
{{ $user->name }}
{{ $user->email }}
{{ $user->organization?->name ?? 'Platform' }} {{ $user->role }} @if($user->locked_at) Locked @else Active @endif @if($user->force_password_reset) Reset required @endif
@csrf @method('PUT')
@if($user->locked_at)
@csrf
@else
@csrf
@endif
@csrf
No users found.
@if($users->hasPages())
{{ $users->links() }}
@endif
@stop