{{ html()->label('Name')->class('form-label') }}
{{ html()->text('name')->class('form-control')->placeholder('Enter Role Name')->required() }}
{{ html()->label('Guard Name')->class('form-label') }}
{{ html()->text('guard_name', 'web')->class('form-control')->isReadonly($readonly = true) }}
{{ html()->checkbox('all_permissions_check')->class('form-check-input')->id('all-check') }}
{{ html()->label('Select All')->class('form-check-label')->for('all-check') }}
{{ html()->p()->text('Enable all Permissions for this role')->class('fs-6 text-muted mt-1') }}
@foreach ($permissionLists as $key => $permission)
@endforeach
@push('js')
@endpush