1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Backpack\Base\app\Http\Controllers\Auth; |
4
|
|
|
|
5
|
|
|
use Backpack\Base\app\Http\Controllers\Controller; |
6
|
|
|
use Illuminate\Foundation\Auth\SendsPasswordResetEmails; |
7
|
|
|
use Illuminate\Support\Facades\Password; |
8
|
|
|
|
9
|
|
|
class ForgotPasswordController extends Controller |
10
|
|
|
{ |
11
|
|
|
protected $data = []; // the information we send to the view |
12
|
|
|
|
13
|
|
|
/* |
14
|
|
|
|-------------------------------------------------------------------------- |
15
|
|
|
| Password Reset Controller |
16
|
|
|
|-------------------------------------------------------------------------- |
17
|
|
|
| |
18
|
|
|
| This controller is responsible for handling password reset emails and |
19
|
|
|
| includes a trait which assists in sending these notifications from |
20
|
|
|
| your application to your users. Feel free to explore this trait. |
21
|
|
|
| |
22
|
|
|
*/ |
23
|
|
|
|
24
|
|
|
use SendsPasswordResetEmails; |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Create a new controller instance. |
28
|
|
|
* |
29
|
|
|
* @return void |
|
|
|
|
30
|
|
|
*/ |
31
|
|
|
public function __construct() |
32
|
|
|
{ |
33
|
|
|
$guard = config('backpack.base.guard') |
34
|
|
|
?: config('auth.defaults.guard'); |
35
|
|
|
|
36
|
|
|
$this->middleware("guest:$guard"); |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
// ------------------------------------------------------- |
40
|
|
|
// Laravel overwrites for loading backpack views |
41
|
|
|
// ------------------------------------------------------- |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* Display the form to request a password reset link. |
45
|
|
|
* |
46
|
|
|
* @return \Illuminate\Http\Response |
47
|
|
|
*/ |
48
|
|
|
public function showLinkRequestForm() |
49
|
|
|
{ |
50
|
|
|
$this->data['title'] = trans('backpack::base.reset_password'); // set the page title |
51
|
|
|
|
52
|
|
|
return view('backpack::auth.passwords.email', $this->data); |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
public function broker() |
56
|
|
|
{ |
57
|
|
|
$passwords = config('backpack.base.passwords') |
58
|
|
|
?: config('auth.defaults.passwords'); |
59
|
|
|
|
60
|
|
|
return Password::broker($passwords); |
61
|
|
|
} |
62
|
|
|
} |
63
|
|
|
|
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.