From 293fae6bd8285d076cedf2b8147a20e4090aa5bc Mon Sep 17 00:00:00 2001 From: vlakoff Date: Sat, 10 Mar 2018 02:44:56 +0100 Subject: [PATCH] Add message for "Not Regex" validation rule --- resources/lang/en/validation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index edc036dd..77d23022 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -65,6 +65,7 @@ 'array' => 'The :attribute must have at least :min items.', ], 'not_in' => 'The selected :attribute is invalid.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'The :attribute must be a number.', 'present' => 'The :attribute field must be present.', 'regex' => 'The :attribute format is invalid.',