From 25163d1756f31d77c42fb0961c506ee0e6c59562 Mon Sep 17 00:00:00 2001 From: spencerrlongg Date: Wed, 13 Nov 2024 21:46:23 -0600 Subject: [PATCH] =?UTF-8?q?working=20except=20for=20null=20=F0=9F=A4=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Rules/AlphaEncrypted.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Rules/AlphaEncrypted.php b/app/Rules/AlphaEncrypted.php index 246d92f0b7..5e0ffcbd52 100644 --- a/app/Rules/AlphaEncrypted.php +++ b/app/Rules/AlphaEncrypted.php @@ -19,7 +19,7 @@ class AlphaEncrypted implements ValidationRule $decrypted = Crypt::decrypt($value); dump($decrypted); if (!ctype_alpha($decrypted)) { - $fail($attribute.' is not numeric.'); + $fail($attribute.' is not alphabetic.'); } } catch (\Exception $e) { $fail($e->getMessage());