22 lines
395 B
PHP
22 lines
395 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Controllers\Auth;
|
||
|
|
|
||
|
|
use App\Http\Controllers\Controller;
|
||
|
|
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
||
|
|
|
||
|
|
class ForgotPasswordController extends Controller
|
||
|
|
{
|
||
|
|
use SendsPasswordResetEmails;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create a new controller instance.
|
||
|
|
*
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
$this->middleware('guest');
|
||
|
|
}
|
||
|
|
}
|