administrator this role can be found in the configuration file config/shopper/core.php.
RBAC ACL
RBAC (Role Based Access Control) or ACL (Access Control Layer) is an approach to restricting system access for users using roles system, Shopper allow to define the level of access for each user. With roles a user can access menus, pages. It is important to know that one Administrator can have multiple roles assigned. To view the roles and permissions management page, you must go to theSettings > Staff & Permissions

Settings > Staff & permissions
Fields
The model used for the Role isShopper\Core\Models\Role this model extend from the Spatie Role model.
And the Permission model is
Shopper\Core\Models\Permission
The Permission model has some groups as shown here
Components
The components used to manage locations are found in the component configuration fileconfig/shopper/components.php.
Manage Roles
A Role is a set of permissions to perform certain operations within the system, which is assigned to a chosen Administrator. As said previously Shopper at installation comes with 3 roles but 2 are accessible in the administration panel. The user role does not appear, modifying it could lead to bugs on your store so it is not listed here.
Roles & Admins
Add role
To add a new role, you must click onAdd a new role button. Required fields are marked with asterisks

Add new role
Update role
To modify a role you must click on the role you want to modify to access the edit form. And as already mentioned, all Shopper features are livewire components. So you can change everything at any time to fit your store.
Update role
Create admin
In addition to creating an administrator from the command line you can also do it from the Shopper interface, you just need to click on Add Administrator button.
Add admin

Add admin form
Shopper\Http\Livewire\Components\Settings\Management\CreateAdminUser
Create permission
Let’s assume that you would like to add a new permission to ACL. You will need to choose the role because every single permissions are linked to a role. In the way that when a admin are granted of a specific role, he take all role’s permissions.
Role's permissions example

Add permission
Custom permissions section.

New permission