PasswordController.php
Go to the documentation of this file.
1 <?php
2 
4 
7 
17 {
18  /*
19  |--------------------------------------------------------------------------
20  | Password Reset Controller
21  |--------------------------------------------------------------------------
22  |
23  | This controller is responsible for handling password reset requests
24  | and uses a simple trait to include this behavior. You're free to
25  | explore this trait and override any methods you wish to tweak.
26  |
27  */
28 
29  use ResetsPasswords;
30 
36  public function __construct()
37  {
38  $this->middleware('guest');
39  }
40 }
__construct()
Create a new password controller instance.
This controller handles password resets for the user.