@extends('layouts.app') @section('title', 'Add New User') @section('content')

Add New User

Back
@csrf {{-- Basic Information --}}
Basic Information
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror

{{-- Password --}}
Password
Minimum 8 characters @error('password')
{{ $message }}
@enderror

{{-- Roles --}}
Roles & Permissions *
@error('role_ids')
{{ $message }}
@enderror
@foreach($roles as $role)
id, old('role_ids', [])) ? 'checked' : '' }}>
@endforeach

{{-- Status --}}
Account Status
{{-- Submit Buttons --}}
Cancel
{{-- Info Sidebar --}}
Information

Users created here are for system access and are separate from employees.


Role Guidelines:
  • Admin: Full system access
  • HR: Employee & attendance management
  • Finance: Payroll & financial reports
  • Manager: Department-level access
@endsection