@extends('layouts.app-admin') @section('content')
@csrf @method('PUT')

Role Information

name, ['Super Admin', 'Admin', 'User']) ? 'readonly' : '' }} required> @if (in_array($role->name, ['Super Admin', 'Admin', 'User'])) This is a system role and cannot be renamed @else Role name should be unique and descriptive @endif
The guard name cannot be changed
Permissions

Assign Permissions to Role

@foreach ($permissions->chunk(5) as $permissionGroup)
@foreach ($permissionGroup as $permission) @endforeach
@endforeach
@endsection