update mail
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m48s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 15s
Build, Push and Deploy / deploy-staging (push) Successful in 39s
Build, Push and Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-05-09 15:09:09 +07:00
parent 6e076e8f55
commit 145bd5675f

View File

@@ -98,7 +98,7 @@ public function store(Request $request)
'email' => $request->email 'email' => $request->email
]); ]);
return response()->json([ return response()->json([
'message' => 'Something went wrong. Please contact the admin.', 'message' => 'Something went wrong: ' . $th->getMessage(),
], 403); ], 403);
} }
} }
@@ -279,7 +279,7 @@ public function businessSetup(Request $request)
} catch (\Throwable $th) { } catch (\Throwable $th) {
DB::rollBack(); DB::rollBack();
return response()->json([ return response()->json([
'message' => 'Something went wrong. Please contact the admin.', 'message' => 'Something went wrong: ' . $th->getMessage(),
], 403); ], 403);
} }
} }