From c36799dddeaff2a0129b2dc2a18d34651463b9a8 Mon Sep 17 00:00:00 2001 From: Mohamed Said Date: Sun, 28 Feb 2016 17:08:13 +0000 Subject: [PATCH] Add language line to the validation "distinct" 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 387d1dbb..31792b6e 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -34,6 +34,7 @@ 'different' => 'The :attribute and :other must be different.', 'digits' => 'The :attribute must be :digits digits.', 'digits_between' => 'The :attribute must be between :min and :max digits.', + 'distinct' => 'The :attribute field has a duplicate value.', 'email' => 'The :attribute must be a valid email address.', 'exists' => 'The selected :attribute is invalid.', 'filled' => 'The :attribute field is required.',