@extends('layouts.admin')
@section('title', 'Manage role')
@section('content')
Back to roles
@if ($role->is_system)
Protected system role
Its metadata, permissions, state, and deletion are deployment-controlled.
@else
@can('updatePermissions', $role)
@endcan
Delete role
Only unassigned custom roles can be deleted.
@endif
@endsection