From 2648e66e54a4a4ae75e1d3a5c8a4794971c12221 Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Sat, 18 Oct 2025 14:38:46 +0700 Subject: [PATCH] fix(register): correct wording in registration success toast message --- app/Livewire/Auth/Register.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/Auth/Register.php b/app/Livewire/Auth/Register.php index d7093e3..1bbb4b6 100644 --- a/app/Livewire/Auth/Register.php +++ b/app/Livewire/Auth/Register.php @@ -78,7 +78,7 @@ public function register() { $this->form->auth(); - $this->toast('Selamat, akun Anda berhasil didaftarkan. Silakan cek email Anda untuk melakukan verifikasi.'); + $this->toast('Selamat, akun Anda berhasil didaftarkan. Silakan periksa email Anda untuk melakukan verifikasi.'); $this->redirectIntended('/customer/dashboard/overview', navigate: true); }