@extends('layouts.app') @section('title', 'Edit Role') @section('content')

Edit Role

Update the role identity and fine-tune its permissions.
Back
@if($errors->any())
@endif
Role Summary
Quick view of the role being edited.
Display Name {{ \Illuminate\Support\Str::headline($role->name) }}
System Key {{ $role->name }}
Granted Permissions {{ $role->permissions->count() }}
Permission Guidance

Give only the permissions the role actually needs. Keep `view`, `edit`, `delete`, and `interact` permissions separate so access stays predictable.

@csrf @method('PUT')
Role Configuration
Edit the name and check the permissions this role should receive.
@foreach($permissions as $permission)
@endforeach
Cancel
@endsection