From 145bd5675f88a16b10b2e1b9ceecf5bb497d6fde Mon Sep 17 00:00:00 2001 From: eko54r Date: Sat, 9 May 2026 15:09:09 +0700 Subject: [PATCH] update mail --- app/Http/Controllers/Auth/RegisteredUserController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/Auth/RegisteredUserController.php b/app/Http/Controllers/Auth/RegisteredUserController.php index 74731668..99db6d9c 100644 --- a/app/Http/Controllers/Auth/RegisteredUserController.php +++ b/app/Http/Controllers/Auth/RegisteredUserController.php @@ -98,7 +98,7 @@ public function store(Request $request) 'email' => $request->email ]); return response()->json([ - 'message' => 'Something went wrong. Please contact the admin.', + 'message' => 'Something went wrong: ' . $th->getMessage(), ], 403); } } @@ -279,7 +279,7 @@ public function businessSetup(Request $request) } catch (\Throwable $th) { DB::rollBack(); return response()->json([ - 'message' => 'Something went wrong. Please contact the admin.', + 'message' => 'Something went wrong: ' . $th->getMessage(), ], 403); } }