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

39 lines
1.0 KiB
PHP
Raw Normal View History

2017-11-03 05:26:07 +00:00
<?php
namespace App\Http\Controllers\Auth;
use Illuminate\Foundation\Auth\ResetsPasswords;
2018-08-07 04:26:33 +00:00
use Illuminate\Http\Request;
2017-11-03 05:26:07 +00:00
2020-01-22 10:05:31 +00:00
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
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
*/
2020-01-22 10:05:31 +00:00
protected $redirectTo = RouteServiceProvider::HOME;
2017-11-03 05:26:07 +00:00
2018-08-07 04:26:33 +00:00
public function showResetForm(Request $request, $token = null)
{
return view('adminlte::auth.passwords.reset')->with(
['token' => $token, 'email' => $request->email]
);
}
2018-08-07 14:23:46 +00:00
}