Did you forget adding enctype="multipart/form-data" to the form?
Apr 13, 2022
7
Level 2
Image validation
Hi,
i am using 'photos' => 'required|image|mimes:jpg,png,gif|max:2048' to validate the image but still when i upload the image it is showing me the photo must be an image and the photo must be the type of jpg,png or gif
Level 102
@tayyabshahzad1 You have an array of files
'photos' => 'array',
'photos.*' => 'required|image|mimes:jpg,png,gif|max:2048'
Please or to participate in this conversation.