Browse Source

Merge pull request #3672 from themsaid/add-language-line-for-present-validation-rule

Add language line for the "present" validation rule.
Taylor Otwell 9 years ago
parent
commit
83fd3f29e7
1 changed files with 1 additions and 0 deletions
  1. 1 0
      resources/lang/en/validation.php

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

@@ -57,6 +57,7 @@ return [
     ],
     'not_in'               => 'The selected :attribute is invalid.',
     'numeric'              => 'The :attribute must be a number.',
+    'present'              => 'The :attribute field must be present.',
     'regex'                => 'The :attribute format is invalid.',
     'required'             => 'The :attribute field is required.',
     'required_if'          => 'The :attribute field is required when :other is :value.',