2FAuth/app/Http/Controllers/Auth/ResetPasswordController.php

23 lines
642 B
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
2022-03-15 14:47:07 +01:00
namespace App\Http\Controllers\Auth;
2019-05-20 07:37:41 +02:00
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;
class ResetPasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset requests
| and uses a simple trait to include this behavior. You're free to
| explore this trait and override any methods you wish to tweak.
|
*/
use ResetsPasswords;
}