This commit is contained in:
Mohit Panjwani
2022-02-10 11:50:13 +05:30
12 changed files with 88 additions and 52 deletions

View File

@ -92,6 +92,12 @@ class CustomerProfileRequest extends FormRequest
],
'shipping.fax' => [
'nullable',
],
'customer_avatar' => [
'nullable',
'file',
'mimes:gif,jpg,png',
'max:20000'
]
];
}