@extends('admin.layouts.app') @section('page-title', 'Add New Staff') @section('content')
πŸ‘¨β€πŸ’Ό

Add New Staff Member

Complete all the steps below to add a new staff member to your team

1
Personal
2
Professional
3
Account
4
Permissions
@if($errors->any())
⚠️ Please fix the following errors
    @foreach($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif
@csrf
ℹ️ If left blank, username will be generated from employee ID
πŸ”’ Minimum 8 characters with letters and numbers

πŸ” Set Access Permissions

Select the permissions you want to grant to this staff member.

@foreach($permissions as $group => $groupPerms)

{{ ucfirst($group) }}

@foreach($groupPerms as $perm) @endforeach
@endforeach
@endsection