Lae/app/Http/Controllers/Web/Auth/ForgotPasswordController.php

28 lines
779 B
PHP
Raw Normal View History

2023-02-01 18:58:44 +00:00
<?php
namespace App\Http\Controllers\Web\Auth;
use App\Helpers\Auth\SendsPasswordResetEmails;
use App\Http\Controllers\Controller;
class ForgotPasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset emails and
| includes a trait which assists in sending these notifications from
| your application to your users. Feel free to explore this trait.
|
*/
use SendsPasswordResetEmails;
public function __construct()
{
$this->middleware('throttle:2,1')->only('sendResetLinkEmail');
}
}