| 1 | <?php namespace Arcanesoft\Auth\Http\Controllers\Front;  | 
            ||
| 12 | class ForgotPasswordController extends Controller  | 
            ||
| 13 | { | 
            ||
| 14 | /* ------------------------------------------------------------------------------------------------  | 
            ||
| 15 | | Traits  | 
            ||
| 16 | | ------------------------------------------------------------------------------------------------  | 
            ||
| 17 | */  | 
            ||
| 18 | use SendsPasswordResetEmails;  | 
            ||
| 19 | |||
| 20 | /* ------------------------------------------------------------------------------------------------  | 
            ||
| 21 | | Constructor  | 
            ||
| 22 | | ------------------------------------------------------------------------------------------------  | 
            ||
| 23 | */  | 
            ||
| 24 | /**  | 
            ||
| 25 | * Create a new controller instance.  | 
            ||
| 26 | */  | 
            ||
| 27 | public function __construct()  | 
            ||
| 31 | |||
| 32 | /* ------------------------------------------------------------------------------------------------  | 
            ||
| 33 | | Main Functions  | 
            ||
| 34 | | ------------------------------------------------------------------------------------------------  | 
            ||
| 35 | */  | 
            ||
| 36 | /**  | 
            ||
| 37 | * Display the form to request a password reset link.  | 
            ||
| 38 | *  | 
            ||
| 39 | * @return \Illuminate\Http\Response  | 
            ||
| 40 | */  | 
            ||
| 41 | public function showLinkRequestForm()  | 
            ||
| 45 | }  | 
            ||
| 46 |