Create System User

Create a staff account, assign roles and configure account access.

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf

User Account Information

Enter the user’s identity, temporary password, roles and account status.

Basic Information

Linking a member allows the user account to use the member’s church profile.

Account Security

The user will be required to change this password after the first login.

Active account

The user can sign in immediately after the account is created.

User Roles

Select one or more roles to control the modules this user can access.

@if($roles->isEmpty())
No roles found

Create roles and permissions before creating user accounts.

@else
@foreach($roles as $role) @endforeach
@endif

First login security

This account will automatically require a password change after the first successful login.

Cancel