1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 15:13:29 +01:00
invoiceninja/app/Http/Controllers/ClientAuth/ResetPasswordController.php

71 lines
1.7 KiB
PHP
Raw Normal View History

2017-11-14 09:58:08 +01:00
<?php
namespace App\Http\Controllers\ClientAuth;
use Password;
use Config;
2017-11-15 10:25:41 +01:00
use App\Models\PasswordReset;
2017-11-14 09:58:08 +01:00
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;
2017-11-14 21:34:56 +01:00
use Illuminate\Http\Request;
2017-11-15 08:51:49 +01:00
use App\Models\PasswordReset;
2017-11-14 09:58:08 +01:00
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 resetting their password.
*
* @var string
*/
protected $redirectTo = '/client/dashboard';
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest:client');
//Config::set('auth.defaults.passwords', 'client');
}
protected function broker()
{
return Password::broker('clients');
}
protected function guard()
{
2017-11-14 21:34:56 +01:00
return auth()->guard('client');
2017-11-14 09:58:08 +01:00
}
public function showResetForm(Request $request, $token = null)
{
2017-11-15 08:51:49 +01:00
$passwordReset = PasswordReset::whereToken($token)->first();
2017-11-15 10:25:41 +01:00
if (! $passwordReset) {
return redirect('login')->withMessage(trans('texts.invalid_code'));
}
2017-11-15 08:51:49 +01:00
2017-11-14 09:58:08 +01:00
return view('clientauth.passwords.reset')->with(
2017-11-15 10:25:41 +01:00
['token' => $token, 'email' => $passwordReset->email]
2017-11-14 09:58:08 +01:00
);
}
}