12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- namespace App\Http\Controllers\AdminAuth;
- use App\Http\Controllers\Controller;
- use Illuminate\Foundation\Auth\ResetsPasswords;
- use Illuminate\Support\Facades\Auth;
- use Illuminate\Support\Facades\Password;
- use Illuminate\Http\Request;
- class ResetPasswordController extends Controller
- {
- /*
- |--------------------------------------------------------------------------
- | Password Reset Controller
- |--------------------------------------------------------------------------
- |
- | This controller is responsible for handling password reset requests
- | and uses a simple trait to include this behavior. You're free to
- | explore this trait and override any methods you wish to tweak.
- |
- */
- use ResetsPasswords;
- /**
- * Where to redirect users after login / registration.
- *
- * @var string
- */
- public $redirectTo = '/admin/home';
- /**
- * Create a new controller instance.
- *
- * @return void
- */
- public function __construct()
- {
- $this->middleware('admin.guest');
- }
- /**
- * Display the password reset view for the given token.
- *
- * If no token is present, display the link request form.
- *
- * @param \Illuminate\Http\Request $request
- * @param string|null $token
- * @return \Illuminate\Http\Response
- */
- public function showResetForm(Request $request, $token = null)
- {
- return view('admin.auth.passwords.reset')->with(
- ['token' => $token, 'email' => $request->email]
- );
- }
- /**
- * Get the broker to be used during password reset.
- *
- * @return \Illuminate\Contracts\Auth\PasswordBroker
- */
- public function broker()
- {
- return Password::broker('admins');
- }
- /**
- * Get the guard to be used during password reset.
- *
- * @return \Illuminate\Contracts\Auth\StatefulGuard
- */
- protected function guard()
- {
- return Auth::guard('admin');
- }
- }
|