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

30 lines
785 B
PHP
Raw Normal View History

2016-06-20 13:35:59 +00:00
<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;
2019-11-08 12:08:34 +00:00
class ResetPasswordController extends Controller
2016-06-20 13:35:59 +00:00
{
/*
|--------------------------------------------------------------------------
| 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;
/**
2019-11-08 12:08:34 +00:00
* Where to redirect users after resetting their password.
2016-06-20 13:35:59 +00:00
*
2019-11-08 12:08:34 +00:00
* @var string
2016-06-20 13:35:59 +00:00
*/
2019-11-08 12:08:34 +00:00
protected $redirectTo = '/home';
2016-06-20 13:35:59 +00:00
}