@extends('admin.layouts.app') @section('page-title', 'Edit Staff') @section('content')
{{ strtoupper(substr($staff->name, 0, 2)) }}

Edit Staff Profile

{{ $staff->name }}
{{ $staff->employee_id }}
@if($errors->any())
⚠️ There were some problems with your input
    @foreach($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif
@csrf @method('PUT')
👤

Personal Information

💼

Professional Information

🔐

Account Information

📝

Additional Information

🔑

Permissions & Access

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

{{ ucfirst($group) }}

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