for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yeelight\Http\Controllers\BackendAuth;
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
use Yeelight\Http\Controllers\Controller;
/**
* Class ForgotPasswordController
*
* @category Yeelight
* @package Yeelight\Http\Controllers\BackendAuth
* @author Sheldon Lee <[email protected]>
* @license https://opensource.org/licenses/MIT MIT
* @link https://www.yeelight.com
*/
class ForgotPasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|
| 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.
use SendsPasswordResetEmails;
* Create a new controller instance.
* @return void
public function __construct()
$this->middleware('guest');
}
* Display the form to request a password reset link.
* @return \Illuminate\Http\Response
public function showLinkRequestForm()
return view('angulr.auth.passwords.email');
return view('angulr.auth.passwords.email')
Illuminate\View\View|Ill...\Contracts\View\Factory
Illuminate\Http\Response