1
|
|
|
<?php |
2
|
|
|
namespace Xetaravel\Http\Controllers\Auth; |
3
|
|
|
|
4
|
|
|
use Illuminate\Foundation\Auth\SendsPasswordResetEmails; |
5
|
|
|
use Xetaravel\Http\Controllers\Controller; |
6
|
|
|
use Illuminate\Http\Request; |
7
|
|
|
|
8
|
|
|
class ForgotPasswordController extends Controller |
9
|
|
|
{ |
10
|
|
|
/* |
11
|
|
|
|-------------------------------------------------------------------------- |
12
|
|
|
| Password Reset Controller |
13
|
|
|
|-------------------------------------------------------------------------- |
14
|
|
|
| |
15
|
|
|
| This controller is responsible for handling password reset emails and |
16
|
|
|
| includes a trait which assists in sending these notifications from |
17
|
|
|
| your application to your users. Feel free to explore this trait. |
18
|
|
|
| |
19
|
|
|
*/ |
20
|
|
|
use SendsPasswordResetEmails; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* Create a new controller instance. |
24
|
|
|
* |
25
|
|
|
* @return void |
|
|
|
|
26
|
|
|
*/ |
27
|
|
|
public function __construct() |
28
|
|
|
{ |
29
|
|
|
$this->middleware('guest'); |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* Display the form to request a password reset link. |
34
|
|
|
* |
35
|
|
|
* @return \Illuminate\Http\Response |
|
|
|
|
36
|
|
|
*/ |
37
|
|
|
public function showLinkRequestForm() |
38
|
|
|
{ |
39
|
|
|
return view('Auth.passwords.email'); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* Validate the email for the given request. |
44
|
|
|
* |
45
|
|
|
* @param \Illuminate\Http\Request $request |
46
|
|
|
* @return void |
47
|
|
|
*/ |
48
|
|
|
protected function validateEmail(Request $request) |
49
|
|
|
{ |
50
|
|
|
$rule = [ |
|
|
|
|
51
|
|
|
'email' => 'required|email' |
52
|
|
|
]; |
53
|
|
|
|
54
|
|
|
// Bipass the captcha for the unit testing. |
55
|
|
|
if (App::environment() !== 'testing') { |
56
|
|
|
$rules = array_merge($rules, ['g-recaptcha-response' => 'required|recaptcha']); |
|
|
|
|
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
$this->validate($request, $rules); |
|
|
|
|
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
/** |
63
|
|
|
* Get the response for a successful password reset link. |
64
|
|
|
* |
65
|
|
|
* @param string $response |
66
|
|
|
* |
67
|
|
|
* @return \Illuminate\Http\RedirectResponse |
68
|
|
|
*/ |
69
|
|
|
protected function sendResetLinkResponse($response) |
|
|
|
|
70
|
|
|
{ |
71
|
|
|
return redirect() |
72
|
|
|
->route('page.index') |
73
|
|
|
->with('success', 'We have e-mailed your password reset link!'); |
74
|
|
|
} |
75
|
|
|
} |
76
|
|
|
|
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.