thiagobrauer / laravel-multiauth-password-reset
Add support to reset passwords when using multiple tables (and diffrent types of usernames) to authenticate in your Laravel application
1.0.0
2019-02-24 03:58 UTC
This package is auto-updated.
Last update: 2025-04-24 18:01:35 UTC
README
Add support to reset passwords when using multiple tables (and diffrent types of usernames) to authenticate in your Laravel application
Installation
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, ];