1 | <?php |
||
15 | class PasswordController extends Controller |
||
16 | { |
||
17 | /* |
||
18 | |-------------------------------------------------------------------------- |
||
19 | | Password Reset Controller |
||
20 | |-------------------------------------------------------------------------- |
||
21 | | |
||
22 | | This controller is responsible for handling password reset requests |
||
23 | | and uses a simple trait to include this behavior. You're free to |
||
24 | | explore this trait and override any methods you wish to tweak. |
||
25 | | |
||
26 | */ |
||
27 | |||
28 | use ResetsPasswords; |
||
29 | |||
30 | /** |
||
31 | * cn = company normal |
||
32 | * @var array |
||
33 | */ |
||
34 | protected $custom = ['mode' => 'cn']; |
||
35 | |||
36 | |||
37 | /** |
||
38 | * Create a new password controller instance. |
||
39 | * |
||
40 | */ |
||
41 | 6 | public function __construct() |
|
47 | } |
||
48 |