Browse Source

Merge pull request #4782 from eduarguzher/patch/validation-translation

[5.7] Changes the translation for "required_with_all" validation rule
Taylor Otwell 5 years ago
parent
commit
877e2d7fda
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/lang/en/validation.php

+ 1 - 1
resources/lang/en/validation.php

@@ -97,7 +97,7 @@ return [
     '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.',