3 namespace BookStack\Http\Controllers\Auth;
5 use BookStack\Http\Controllers\Controller;
6 use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
8 class ForgotPasswordController extends Controller
11 |--------------------------------------------------------------------------
12 | Password Reset Controller
13 |--------------------------------------------------------------------------
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.
21 use SendsPasswordResetEmails;
24 * Create a new controller instance.
28 public function __construct()
30 $this->middleware('guest');
31 parent::__construct();