12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
-
- namespace App\Http\Controllers\Auth;
-
- use App\Http\Controllers\Controller;
- use App\Providers\RouteServiceProvider;
- use Illuminate\Foundation\Auth\ConfirmsPasswords;
-
- class ConfirmPasswordController extends Controller
- {
-
-
-
- use ConfirmsPasswords;
-
-
-
- protected $redirectTo = RouteServiceProvider::HOME;
-
-
-
- public function __construct()
- {
- $this->middleware('auth');
- }
- }
|