@extends('layouts.app') @section('content') {{-- SUCCESS TOAST --}} @if(session('success'))
{{ session('success') }}
@endif
{{-- ── TOOLBAR ── --}}

Agency Profile

{{-- ── CONTENT ── --}}
{{-- Agency Header --}}
@include('admin.agency.agency_header')
{{-- ── CARD HEADER ── --}}
User Management
{{-- ── TABLE ── --}}
@foreach($users as $user) @endforeach
User Role Two-step Joined Date
@if($user->user_image) {{ $user->name }} @else {{ $user->name }} @endif
{{ $user->name }}
{{ $user->email }}
{{ ucfirst($user->role->role_name) }} @if($user->mfa) @if($user->mfa->enabled) Enabled @else Disabled @endif @endif {{ $user->created_at->format('d M Y H:i') }}
{{-- ── ADD USER MODAL ── --}} {{-- ── EDIT USER DRAWER ── --}}
@csrf User Image
{{-- ── RESET PASSWORD DRAWER ── --}}

Reset Password

User Name:
@csrf
{{-- ── TWO FACTOR DRAWER ── --}}

Two Factor Authentication

User Name:
@csrf
@endsection @section('scripts') {{-- Auto-dismiss server-flashed success toast (mirrors site-settings template) --}} @endsection