App\Http\Controllers\AuthController::forgot PHP Method

forgot() public method

public forgot ( )
    public function forgot()
    {
        if (config('mail.host') != "") {
            return view('auth.forgot');
        } else {
            throw new PrettyPageException(trans('auth.forgot.close'), 8);
        }
    }