validation.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Validation Error Messages
  6. |--------------------------------------------------------------------------
  7. */
  8. "accepted" => "The :attribute must be accepted.",
  9. "active_url" => "The :attribute does not exist.",
  10. "alpha" => "The :attribute may only contain letters.",
  11. "alpha_dash" => "The :attribute may only contain letters, numbers, dashes, and underscores.",
  12. "alpha_num" => "The :attribute may only contain letters and numbers.",
  13. "between" => "The :attribute must be between :min - :max.",
  14. "confirmed" => "The :attribute confirmation does not match.",
  15. "email" => "The :attribute format is invalid.",
  16. "image" => "The :attribute must be an image.",
  17. "in" => "The selected :attribute is invalid.",
  18. "integer" => "The :attribute must be an integer.",
  19. "max" => "The :attribute must be less than :max.",
  20. "mimes" => "The :attribute must be a file of type: :values.",
  21. "min" => "The :attribute must be at least :min.",
  22. "not_in" => "The selected :attribute is invalid.",
  23. "numeric" => "The :attribute must be a number.",
  24. "required" => "The :attribute field is required.",
  25. "size" => "The :attribute must be :size.",
  26. "unique" => "The :attribute has already been taken.",
  27. "url" => "The :attribute format is invalid.",
  28. /*
  29. |--------------------------------------------------------------------------
  30. | The following words are appended to the "size" messages when applicable,
  31. | such as when validating string lengths or the size of file uploads.
  32. |--------------------------------------------------------------------------
  33. */
  34. "characters" => "characters",
  35. "kilobytes" => "kilobytes",
  36. );