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

Maintainers

Package info

github.com/thiagobrauer/laravel-multiauth-password-reset

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

Statistics

Installs: 22

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

1.0.0 2019-02-24 03:58 UTC

This package is auto-updated.

Last update: 2026-02-24 19:40:21 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,
];