tayyabshahzad1's avatar

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

0 likes
7 replies
Sinnbeck's avatar

Did you forget adding enctype="multipart/form-data" to the form?

tayyabshahzad1's avatar

@Sinnbeck no its not working <form action="{{ route('admin.products.store') }}" method="post" enctype="multipart/form-data" id="addProductFrom" role="form" >

<input type="file" class="form-control" name="photos[]" multiple id="photo">

Sinnbeck's avatar
Sinnbeck
Best Answer
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.