| 1 | <?php |
||
| 10 | class SecurityController extends Controller |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Create a new security controller instance. |
||
| 14 | */ |
||
| 15 | 7 | public function __construct() |
|
| 19 | |||
| 20 | /** |
||
| 21 | * Show user password change form. |
||
| 22 | * |
||
| 23 | * @return \Illuminate\Http\Response |
||
| 24 | */ |
||
| 25 | 1 | public function showChangePassword() |
|
| 29 | |||
| 30 | /** |
||
| 31 | * Update the user's password. |
||
| 32 | * |
||
| 33 | * @param \Illuminate\Http\Request $request |
||
| 34 | * |
||
| 35 | * @return \Illuminate\Http\Response |
||
| 36 | */ |
||
| 37 | 5 | public function changePassword(Request $request) |
|
| 54 | } |
||
| 55 |