Add support to reset passwords when using multiple tables (and diffrent types of usernames) to authenticate in your Laravel application
thiagobrauer/laravel-multiauth-password-reset is a Laravel package for add support to reset passwords when using multiple tables (and diffrent types of usernames) to authenticate in your laravel application.
It currently has 1 GitHub stars and 22 downloads on Packagist (latest version 1.0.0).
Install it with composer require thiagobrauer/laravel-multiauth-password-reset.
Discover more Laravel packages by thiagobrauer
or browse all Laravel packages to compare alternatives.
Last updated
Add support to reset passwords when using multiple tables (and diffrent types of usernames) to authenticate in your Laravel application
composer require thiagobrauer/laravel-multiauth-password-reset
If you are using Laravel 5.5 or higher, the package's provider will be automatically registered. For older version you need to add the provider to the config/app.php file:
'providers' => [
// ...
ThiagoBrauer\MultiAuthPasswordReset\PasswordResetServiceProvider::class,
];