From 4133511eafe5132c2509c0d36209dd4c6a0e74a8 Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Sun, 5 Jan 2025 18:48:13 +0700 Subject: [PATCH] chore(login): mengaktifkan validasi untuk recaptcha --- app/Http/Requests/Auth/LoginRequest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Requests/Auth/LoginRequest.php b/app/Http/Requests/Auth/LoginRequest.php index 5541a05..ee08340 100644 --- a/app/Http/Requests/Auth/LoginRequest.php +++ b/app/Http/Requests/Auth/LoginRequest.php @@ -20,7 +20,7 @@ public function rules(): array return [ 'login' => 'required|string|max:255', 'password' => 'required|string|min:8|max:60', - // 'g-recaptcha-response' => 'recaptcha', + 'g-recaptcha-response' => 'recaptcha', ]; }