New Role @isset($breadcrumbs) @endisset
@csrf

New Role

Create a new role to define default permissions and access levels for users in your organization.

Provide a brief description of this role and its responsibilities.

Default Role Permissions

By default, this role will have the following permissions unless specified otherwise.

Allows the role to create new records by default.

Allows the role to view records by default.

Allows the role to update records by default.

Allows the role to delete records by default.

Include as a default role when new accounts are created.

@php $managePermissions = [ 'can_manage_roles' => 'Manage Roles', 'can_manage_ipass' => 'Manage iPass', 'can_manage_users' => 'Manage Users', 'can_manage_adhoc' => 'Manage Adhoc', 'can_manage_documents' => 'Manage Documents', ]; @endphp @foreach ($managePermissions as $field => $label)

Allow users to {{ strtolower($label) }}.

@endforeach
Cancel