Removed dd() statement

Removed dd() statement in catch block of ForgotPasswordController to fix issue #712
This commit is contained in:
Manish Verma
2018-11-10 12:12:10 +05:30
committed by Manish Verma
parent 83e228fa3b
commit 6d8f391d30

View File

@@ -81,7 +81,6 @@ class ForgotPasswordController extends Controller
return redirect()->back()->with('fails', Lang::get("lang.we_can't_find_a_user_with_that_e-mail_address")); return redirect()->back()->with('fails', Lang::get("lang.we_can't_find_a_user_with_that_e-mail_address"));
} }
} catch (\Exception $e) { } catch (\Exception $e) {
dd($e);
return redirect()->back()->with('fails', $e->getMessage()); return redirect()->back()->with('fails', $e->getMessage());
} }