Filament Passwordless is a package for Filament that allows users to login without a password.
You can install the package via composer:
composer require bradyrenting/filament-passwordless
You can publish the config file with:
php artisan vendor:publish --tag="filament-passwordless-config"
Optionally, you can publish the views using
php artisan vendor:publish --tag="filament-passwordless-views"
Register the plugin in your Filament panel provider (the default filename is app/Providers/Filament/AdminPanelProvider.php
):
use BradyRenting\FilamentPasswordless\FilamentPasswordlessPlugin;
// ...
return $panel
->plugin(FilamentPasswordlessPlugin::make())
// ...
Note that you can remove any existing call to ->login()
in the panel's configuration because it will be provided by this plugin.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see LICENSE for more information.