2FAuth/app/Api/v1/Controllers/Auth/ResetPasswordController.php

25 lines
674 B
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
namespace App\Api\v1\Controllers\Auth;
2019-05-20 07:37:41 +02:00
use Illuminate\Http\Request;
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;
}