1 | <?php namespace Anomaly\UsersModule\Http\Controller; |
||
13 | class PasswordController extends PublicController |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * Constructor |
||
18 | */ |
||
19 | public function __construct() |
||
25 | |||
26 | /** |
||
27 | * Return a forgot password view. |
||
28 | */ |
||
29 | public function forgot() |
||
33 | |||
34 | /** |
||
35 | * Reset a user password. |
||
36 | * |
||
37 | * @return \Illuminate\Contracts\View\View|mixed |
||
38 | */ |
||
39 | public function reset() |
||
43 | |||
44 | /** |
||
45 | * Change a logged-user password. |
||
46 | * |
||
47 | * @return \Illuminate\Contracts\View\View|mixed |
||
48 | */ |
||
49 | public function change() |
||
53 | } |
||
54 |