| 1 | <?php |
||
| 10 | class ForgotPasswordController extends Controller |
||
| 11 | { |
||
| 12 | /* |
||
| 13 | |-------------------------------------------------------------------------- |
||
| 14 | | Password Reset Controller |
||
| 15 | |-------------------------------------------------------------------------- |
||
| 16 | | |
||
| 17 | | This controller is responsible for handling password reset emails and |
||
| 18 | | includes a trait which assists in sending these notifications from |
||
| 19 | | your application to your users. Feel free to explore this trait. |
||
| 20 | | |
||
| 21 | */ |
||
| 22 | |||
| 23 | use SendsPasswordResetEmails; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Display the form to request a password reset link. |
||
| 27 | * |
||
| 28 | * @return \Illuminate\View\View |
||
| 29 | */ |
||
| 30 | public function showLinkRequestForm() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Get the response for a successful password reset link. |
||
| 37 | * |
||
| 38 | * @param string $response |
||
| 39 | * @return \Illuminate\Http\RedirectResponse |
||
| 40 | */ |
||
| 41 | protected function sendResetLinkResponse($response) |
||
| 48 | } |
||
| 49 |