For this plugin to work, you'll need to have the Filament Shield plugin installed and configured.
Your can install the package via composer:
composer require jornboerema/bz-user-management
Install the plugin with:
php artisan bz-user-management:install
Register the plugin in your AdminPanelProvider.
use Filament\Panel;
use JornBoerema\BzUserManagement\BzUserManagementPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
BzUserManagementPlugin::make(),
]);
}