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