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());