| 1 | <?php |
||
| 8 | class ConfirmPasswordController extends Controller |
||
| 9 | { |
||
| 10 | /* |
||
| 11 | |-------------------------------------------------------------------------- |
||
| 12 | | Confirm Password Controller |
||
| 13 | |-------------------------------------------------------------------------- |
||
| 14 | | |
||
| 15 | | This controller is responsible for handling password confirmations |
||
| 16 | | and uses a simple trait to include this behavior. You're free to |
||
| 17 | | explore this trait and override any methods you wish to tweak. |
||
| 18 | | |
||
| 19 | */ |
||
| 20 | use ConfirmsPasswords; |
||
| 21 | /** |
||
| 22 | * Where to redirect users when the intended url fails. |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | protected $redirectTo = '/home'; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Create a new controller instance. |
||
| 30 | */ |
||
| 31 | public function __construct() |
||
| 35 | |||
| 36 | public function showConfirmForm() |
||
| 40 | } |
||
| 41 |