@extends('layouts.app') @section('content')

EDIT {{ old('name', $user->name) }} [ {{ old('status', $user->status)}} ]

1
Personal Information
2
Administrative
3
Location & Organization
@if ($errors->any())
Please fix the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT')
PERSONAL INFORMATION

Update the user's basic personal details

Please enter a valid name
✓ Valid name entered
Please enter a valid email
✓ Valid email address
Phone must start with 255 and be 12 digits
✓ Valid phone number
Please select a rank
✓ Rank selected
Check this to generate a new password for the user (will be sent via SMS)
ADMINISTRATIVE INFORMATION

Update user roles, permissions and status

Please select status
✓ Status selected
Please select a role
✓ Role assigned
Please enter designation
✓ Valid designation
LOCATION & ORGANIZATION

Assign user to organizational units and locations

Please select a region
✓ Region selected
Please select a district
✓ District selected
Please select a branch
✓ Branch selected
Please select a command
✓ Command selected
Please select a department
✓ Department selected
@endsection