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

30 lines
785 B
PHP
Raw Normal View History

2017-11-03 05:26:07 +00:00
<?php
namespace App\Http\Controllers\Auth;
2020-01-22 10:05:31 +00:00
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;
2020-01-22 10:05:31 +00:00
2017-11-03 05:26:07 +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
*/
protected $redirectTo = '/home';
}