From 5052ab1fd7df20e4b643b3208b7b15472b8d6468 Mon Sep 17 00:00:00 2001 From: Jonas Staudenmeir Date: Wed, 21 Nov 2018 21:38:35 +0100 Subject: [PATCH] Add date_equals validation message --- 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 35e5e88d..6c4571c3 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -32,6 +32,7 @@ 'boolean' => 'The :attribute field must be true or false.', 'confirmed' => 'The :attribute confirmation does not match.', 'date' => 'The :attribute is not a valid date.', + 'date_equals' => 'The :attribute must be a date equal to :date.', 'date_format' => 'The :attribute does not match the format :format.', 'different' => 'The :attribute and :other must be different.', 'digits' => 'The :attribute must be :digits digits.',