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

Installs: 22

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/thiagobrauer/laravel-multiauth-password-reset

1.0.0 2019-02-24 03:58 UTC

This package is auto-updated.

Last update: 2025-10-24 19:00:58 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,
];