From fa1eae35b9ce5bd278cbc85571be2474192181de Mon Sep 17 00:00:00 2001 From: Mohamed Said Date: Mon, 21 Nov 2016 18:27:55 +0200 Subject: [PATCH] add language lines for before_or_equal and after_or_equal --- resources/lang/en/validation.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 73b49d084d2..9608bc25b60 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -16,11 +16,13 @@ 'accepted' => 'The :attribute must be accepted.', 'active_url' => 'The :attribute is not a valid URL.', 'after' => 'The :attribute must be a date after :date.', + 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', 'alpha' => 'The :attribute may only contain letters.', 'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.', 'alpha_num' => 'The :attribute may only contain letters and numbers.', 'array' => 'The :attribute must be an array.', 'before' => 'The :attribute must be a date before :date.', + 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', 'between' => [ 'numeric' => 'The :attribute must be between :min and :max.', 'file' => 'The :attribute must be between :min and :max kilobytes.',