Update user details, roles, access status and password requirements.
Update the user’s identity, member link, roles and account access.
Linking a church member allows the user account to use the member’s profile information.
Force password change
The user will be redirected to the password-change page after the next successful login.
Select one or more roles to determine which modules and actions this user can access.
Create roles before editing system-user access.
{{ ucwords( str_replace( ['-', '_'], ' ', $role->name ) ) }}
Assign the {{ $role->name }} access level.
Last Login
{{ $user->last_login_at ? $user->last_login_at->format('d M Y, h:i A') : 'Never logged in' }}
Last Login IP
{{ $user->last_login_ip ?: 'Not recorded' }}
Failed Attempts
{{ number_format($user->failed_login_attempts ?? 0) }}
Lock Status
{{ $user->isLocked() ? 'Locked until ' . $user->locked_until->format('d M Y, h:i A') : 'Not locked' }}
This account is temporarily locked because of repeated failed login attempts. Use the unlock action from the user-management page.