@extends('admin.layouts.app') @section('page-title', 'Account Dashboard') @section('content')

Edit Staff — {{ $staff->display_name ?? $staff->name }}

@if($errors->any())
There were some problems with your input:
@endif
@csrf @method('PUT')



Permissions
@foreach($permissions as $group => $groupPerms)
{{ ucfirst($group) }}
@foreach($groupPerms as $perm) @endforeach
@endforeach
Cancel
@endsection