Browse Source

Add validation error message for the 'required_without' rule

Anders Hammar 11 years ago
parent
commit
c9771d2fff
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/lang/en/validation.php

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

@@ -53,6 +53,7 @@ return array(
 	"regex"           => "The :attribute format is invalid.",
 	"regex"           => "The :attribute format is invalid.",
 	"required"        => "The :attribute field is required.",
 	"required"        => "The :attribute field is required.",
 	"required_with"   => "The :attribute field is required when :values is present.",
 	"required_with"   => "The :attribute field is required when :values is present.",
+	"required_without" => "The :attribute field is required when :values is not present.",
 	"same"            => "The :attribute and :other must match.",
 	"same"            => "The :attribute and :other must match.",
 	"size"            => array(
 	"size"            => array(
 		"numeric"    => "The :attribute must be :size.",
 		"numeric"    => "The :attribute must be :size.",