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-passwordlessYou 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"In your config/filament.php config, replace the default Login page with \BradyRenting\FilamentPasswordless\Http\Livewire\Auth\Login::class.
'auth' => [
'guard' => env('FILAMENT_AUTH_GUARD', 'web'),
'pages' => [
'login' => \BradyRenting\FilamentPasswordless\Http\Livewire\Auth\Login::class,
],
],composer testPlease 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 File for more information.