validation.php 1.2 KB

1234567891011121314151617181920212223242526
  1. <?php
  2. return array(
  3. "accepted" => "The :attribute must be accepted.",
  4. "active_url" => "The :attribute does not exist.",
  5. "alpha" => "The :attribute may only contain letters.",
  6. "alpha_dash" => "The :attribute may only contain letters, numbers, dashes, and underscores.",
  7. "alpha_num" => "The :attribute may only contain letters and numbers.",
  8. "between" => "The :attribute must be between :min - :max.",
  9. "confirmed" => "The :attribute confirmation does not match.",
  10. "email" => "The :attribute format is invalid.",
  11. "image" => "The :attribute must be an image.",
  12. "in" => "The selected :attribute is invalid.",
  13. "integer" => "The :attribute must be an integer.",
  14. "max" => "The :attribute must be less than :max.",
  15. "mimes" => "The :attribute must be a file of type: :values.",
  16. "min" => "The :attribute must be at least :min.",
  17. "not_in" => "The selected :attribute is invalid.",
  18. "numeric" => "The :attribute must be a number.",
  19. "required" => "The :attribute field is required.",
  20. "size" => "The :attribute must be :size.",
  21. "unique" => "The :attribute has already been taken.",
  22. "url" => "The :attribute format is invalid.",
  23. );