jonnybarnes.uk/app/Http/Controllers/Auth/ResetPasswordController.php

33 lines
809 B
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;
2016-09-06 16:40:39 +01:00
class ResetPasswordController extends Controller
2016-05-19 15:01:28 +01: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;
/**
2016-09-06 16:40:39 +01:00
* Create a new controller instance.
2016-05-19 15:01:28 +01:00
*
* @return void
*/
public function __construct()
{
2016-09-06 16:40:39 +01:00
$this->middleware('guest');
2016-05-19 15:01:28 +01:00
}
}