diff options
| author | horus | 2020-02-17 13:17:18 +0100 |
|---|---|---|
| committer | horus | 2020-02-17 13:17:18 +0100 |
| commit | 9ea335ab9c8f9e17e8ce8b6a7e76962bec7ed418 (patch) | |
| tree | dec69240d0d34eebce1cca7aab1f070742187fed /app/Http/Controllers/Auth/ConfirmPasswordController.php | |
| download | zeitumstellung-9ea335ab9c8f9e17e8ce8b6a7e76962bec7ed418.tar.gz | |
Initial commit.
Diffstat (limited to 'app/Http/Controllers/Auth/ConfirmPasswordController.php')
| -rw-r--r-- | app/Http/Controllers/Auth/ConfirmPasswordController.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app/Http/Controllers/Auth/ConfirmPasswordController.php b/app/Http/Controllers/Auth/ConfirmPasswordController.php new file mode 100644 index 0000000..138c1f0 --- /dev/null +++ b/app/Http/Controllers/Auth/ConfirmPasswordController.php @@ -0,0 +1,40 @@ +<?php + +namespace App\Http\Controllers\Auth; + +use App\Http\Controllers\Controller; +use App\Providers\RouteServiceProvider; +use Illuminate\Foundation\Auth\ConfirmsPasswords; + +class ConfirmPasswordController extends Controller +{ + /* + |-------------------------------------------------------------------------- + | Confirm Password Controller + |-------------------------------------------------------------------------- + | + | This controller is responsible for handling password confirmations and + | uses a simple trait to include the behavior. You're free to explore + | this trait and override any functions that require customization. + | + */ + + use ConfirmsPasswords; + + /** + * Where to redirect users when the intended url fails. + * + * @var string + */ + protected $redirectTo = RouteServiceProvider::HOME; + + /** + * Create a new controller instance. + * + * @return void + */ + public function __construct() + { + $this->middleware('auth'); + } +} |
