clrghouz/app/Http/Controllers/Auth/ResetPasswordController.php

31 lines
782 B
PHP
Raw Normal View History

2018-11-15 10:45:49 +00:00
<?php
namespace App\Http\Controllers\Auth;
use Illuminate\Foundation\Auth\ResetsPasswords;
2024-11-06 07:43:35 +00:00
use App\Http\Controllers\Controller;
2018-11-15 10:45:49 +00:00
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;
/**
* Where to redirect users after resetting their password.
*
* @var string
*/
2024-11-06 07:43:35 +00:00
protected $redirectTo = '/';
2018-11-15 10:45:49 +00:00
}