- 'confirmed' => 'The :attribute confirmation does not match.',
- 'date' => 'The :attribute is not a valid date.',
- 'date_format' => 'The :attribute does not match the format :format.',
- 'different' => 'The :attribute and :other must be different.',
- 'digits' => 'The :attribute must be :digits digits.',
- 'digits_between' => 'The :attribute must be between :min and :max digits.',
- 'email' => 'The :attribute must be a valid email address.',
- 'filled' => 'The :attribute field is required.',
- 'exists' => 'The selected :attribute is invalid.',
- 'image' => 'The :attribute must be an image.',
- 'in' => 'The selected :attribute is invalid.',
- 'integer' => 'The :attribute must be an integer.',
- 'ip' => 'The :attribute must be a valid IP address.',
+ 'confirmed' => ':attribute غير مطابق.',
+ 'date' => ':attribute ليس تاريخ صالح.',
+ 'date_format' => ':attribute لا يطابق الصيغة :format.',
+ 'different' => 'يجب أن يكون :attribute مختلف عن :other.',
+ 'digits' => 'يجب أن يكون :attribute بعدد :digits خانات.',
+ 'digits_between' => 'يجب أن يكون :attribute بعدد خانات بين :min و :max.',
+ 'email' => 'يجب أن يكون :attribute عنوان بريد إلكتروني صالح.',
+ 'ends_with' => 'The :attribute must end with one of the following: :values',
+ 'filled' => 'حقل :attribute مطلوب.',
+ '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' => ':attribute المحدد غير صالح.',
+ 'image' => 'يجب أن يكون :attribute صورة.',
+ 'image_extension' => 'The :attribute must have a valid & supported image extension.',
+ 'in' => ':attribute المحدد غير صالح.',
+ 'integer' => 'يجب أن يكون :attribute عدد صحيح.',
+ 'ip' => 'يجب أن يكون :attribute عنوان IP صالح.',
+ '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.',
+ ],