@extends('layouts.app') @section('title', 'Client Portal Users Management') @section('content')
Manage security settings, access levels, and credentials for your client self-service portal.
| Client Details | Email / Username | Status | 2FA | Password Force Change | Last Login | Actions |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 2)) }}
{{ $user->name }}
{{ $user->client->company_name ?? 'Individual' }}
|
{{ $user->email }} | @if($user->status === 'active') Active @elseif($user->status === 'inactive') Inactive @else Locked @endif | @if($user->two_factor_enabled) Enabled @else Disabled @endif | @if($user->must_change_password) Forced @else No @endif |
@if($user->last_login_at)
{{ $user->last_login_at->format('M d, Y H:i') }}
{{ $user->last_login_ip }}
@else
Never
@endif
|
|
|
No portal user accounts found matching constraints.
|
||||||