Browse Source

Merge pull request #2706 from idhamperdameian/master

Add required_with_all validation message
Taylor Otwell 11 years ago
parent
commit
151fdab5fe
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/lang/en/validation.php

+ 1 - 0
app/lang/en/validation.php

@@ -58,6 +58,7 @@ return array(
 	"required"             => "The :attribute field is required.",
 	"required"             => "The :attribute field is required.",
 	"required_if"          => "The :attribute field is required when :other is :value.",
 	"required_if"          => "The :attribute field is required when :other is :value.",
 	"required_with"        => "The :attribute field is required when :values is present.",
 	"required_with"        => "The :attribute field is required when :values is present.",
+	"required_with_all"    => "The :attribute field is required when all of :values are present.",
 	"required_without"     => "The :attribute field is required when :values is not 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.",
 	"required_without_all" => "The :attribute field is required when none of :values are present.",
 	"same"                 => "The :attribute and :other must match.",
 	"same"                 => "The :attribute and :other must match.",