Commit d433293e authored by Taylor Otwell's avatar Taylor Otwell

Add required_if validation language line.

parent 763f1d51
...@@ -52,6 +52,7 @@ return array( ...@@ -52,6 +52,7 @@ return array(
"numeric" => "The :attribute must be a number.", "numeric" => "The :attribute must be a number.",
"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_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_without" => "The :attribute field is required when :values is not 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.",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment