@extends('layouts.app') @section('content')
Create New User
Add a new user to the system
Back to Users
1
2
3
@if ($errors->any()) @endif
@csrf
Personal Information

Enter the user's basic personal details

Format: 255XXXXXXXXX (12 digits starting with 255)
Password Generation

A secure password will be automatically generated and sent to the user via SMS after account creation.

Administrative Information

Set user roles, permissions and status

Role & Permissions

Available Roles:

@foreach(\Spatie\Permission\Models\Role::all() as $role) {{ $role->name }} @endforeach

Default Status: Active

Users will be able to login immediately after creation if set to Active.

Location & Organization

Assign user to organizational units and locations

Organization Assignment
Total Regions
{{ count($regions) }} Available
Total Branches
{{ count($branches) }} Available
Total Departments
{{ count($departments) }} Available
Total Commands
{{ count($commands) }} Available
@endsection