| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 17 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 26 | public function store(Request $request): RedirectResponse  | 
            ||
| 27 |     { | 
            ||
| 28 | $request->validate([  | 
            ||
| 29 | 'email' => ['required', 'email'],  | 
            ||
| 30 | ]);  | 
            ||
| 31 | |||
| 32 | // We will send the password reset link to this user. Once we have attempted  | 
            ||
| 33 | // to send the link, we will examine the response then see the message we  | 
            ||
| 34 | // need to show to the user. Finally, we'll send out a proper response.  | 
            ||
| 35 | $status = Password::sendResetLink(  | 
            ||
| 36 |             $request->only('email') | 
            ||
| 37 | );  | 
            ||
| 38 | |||
| 39 | return $status == Password::RESET_LINK_SENT  | 
            ||
| 40 |                     ? back()->with('status', __($status)) | 
            ||
| 41 |                     : back()->withInput($request->only('email')) | 
            ||
| 42 | ->withErrors(['email' => __($status)]);  | 
            ||
| 43 | }  | 
            ||
| 45 |