From 4b589c1a4a5ec04838408875fc3bd233dbcf5904 Mon Sep 17 00:00:00 2001 From: Eduardo Gh Date: Mon, 1 Oct 2018 21:06:29 -0500 Subject: [PATCH] Changes the translation for "required_with_all" validation rule --- resources/lang/en/validation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index b163c424..4803d639 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -97,7 +97,7 @@ 'required_if' => 'The :attribute field is required when :other is :value.', 'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_with' => 'The :attribute field is required when :values is present.', - 'required_with_all' => 'The :attribute field is required when :values is present.', + 'required_with_all' => 'The :attribute field is required when :values are present.', 'required_without' => 'The :attribute field is required when :values is not present.', 'required_without_all' => 'The :attribute field is required when none of :values are present.', 'same' => 'The :attribute and :other must match.',