panel.access.users
Permission to access the user management
You can entirely block access to the user management in the Panel. This will also hide the "Users" menu item.
Example
<?php
// site/roles/editor.php
return [
'name' => 'Editor',
'default' => false,
'permissions' => [
'*' => true,
'panel.access.users' => false
]
];