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

33 lines
834 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;
2016-09-06 16:40:39 +01:00
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
2016-05-19 15:01:28 +01:00
2016-09-06 16:40:39 +01:00
class ForgotPasswordController extends Controller
2016-05-19 15:01:28 +01:00
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
2016-09-06 16:40:39 +01:00
| This controller is responsible for handling password reset emails and
| includes a trait which assists in sending these notifications from
| your application to your users. Feel free to explore this trait.
2016-05-19 15:01:28 +01:00
|
*/
2016-09-06 16:40:39 +01:00
use SendsPasswordResetEmails;
2016-05-19 15:01:28 +01:00
/**
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
}
}