@extends('layouts.app') @section('title', 'Create User') @section('page-title', 'Create User') @section('content') Create a new system user and assign their role and account access. {{-- Page Actions --}}
Back
@csrf
{{-- Header --}}

User Information

Enter the user's account information, role, and login credentials.

{{-- Form --}}
{{-- Name --}}
@error('name')

{{ $message }}

@enderror
{{-- Email --}}
@error('email')

{{ $message }}

@enderror
{{-- Role --}}

The selected role determines the permissions available to this user.

@error('role')

{{ $message }}

@enderror
{{-- Status --}}

Inactive users should not be allowed to access the system.

@error('is_active')

{{ $message }}

@enderror
{{-- Password --}}

Use at least 8 characters with uppercase, lowercase, and numbers.

@error('password')

{{ $message }}

@enderror
{{-- Confirm Password --}}
{{-- Access Information --}}

Role-Based Access

Access permissions are managed through roles. Assign the appropriate role to this account instead of assigning permissions individually to the user.

{{-- Actions --}}
Cancel
{{-- Password Visibility --}} @endsection