@extends('layouts.app') @section('page-title', 'Edit Role') @section('content') Back to Roles
@csrf @method('PUT') @php($isEdit = true) @if($role->name === 'Super Admin')
Super Admin is a protected system role and cannot be modified.
@endif @include('admin.roles.partials.form-fields') {{ $role->name === 'Super Admin' ? 'Back to Roles' : 'Cancel' }} @if($role->name !== 'Super Admin')@endif
@endsection