+ 'numeric' => 'El :attribute debe estar entre :min y :max.',
+ 'file' => 'El :attribute debe estar entre :min y :max kilobytes.',
+ 'string' => 'El :attribute debe estar entre :min y :max caracteres.',
+ 'array' => 'El :attribute debe estar entre :min y :max items.',
+ ],
+ 'boolean' => 'El campo :attribute debe ser true o false.',
+ 'confirmed' => 'La confirmación de :attribute no concuerda.',
+ 'date' => 'El :attribute no es una fecha válida.',
+ 'date_format' => 'El :attribute no coincide con el formato :format.',
+ 'different' => ':attribute y :other deben ser diferentes.',
+ 'digits' => ':attribute debe ser de :digits dígitos.',
+ 'digits_between' => ':attribute debe ser un valor entre :min y :max dígios.',
+ 'email' => ':attribute debe ser un correo electrónico válido.',
+ 'ends_with' => 'The :attribute must end with one of the following: :values',
+ 'filled' => 'El campo :attribute es requerido.',
+ 'gt' => [
+ 'numeric' => 'The :attribute must be greater than :value.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
+ ],
+ 'gte' => [
+ 'numeric' => 'The :attribute must be greater than or equal :value.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
+ ],
+ 'exists' => 'El :attribute seleccionado es inválido.',
+ 'image' => 'El :attribute debe ser una imagen.',
+ 'image_extension' => 'El :attribute debe tener una extensión de imagen válida y soportada.',
+ 'in' => 'El selected :attribute es inválio.',
+ 'integer' => 'El :attribute debe ser un entero.',
+ 'ip' => 'El :attribute debe ser una dirección IP válida.',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => 'The :attribute must be a valid JSON string.',
+ 'lt' => [
+ 'numeric' => 'The :attribute must be less than :value.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
+ ],
+ 'lte' => [
+ 'numeric' => 'The :attribute must be less than or equal :value.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',