@extends('layouts.admin') @section('title', 'Edit Role') @section('page-title', 'Edit Role') @section('page-subtitle', $role->name) @section('content')
Back to Roles
@csrf @method('PUT')

Role Information

@error('name')

{{ $message }}

@enderror

Permissions

Select permissions for this role:

@foreach($permissions as $permission) @endforeach
Cancel
@endsection