orj's avatar
Level 3

Image validation problem getting The profile picture must be an image.

I have this problem with validating the image even though i am uploading a valid .png or .jpg file, i am using the latest version of laravel

I cant figure it out what is wrong in my code

regards ciby

Validation
'picture' => 'image|mimes:jpg,png',

View
<input type="file" class="form-control" name="picture" id="picture">
0 likes
3 replies
thomaskim's avatar

@ciby Your input name is "picture". Your validation is checking "profile_picture". You need to make the two match.

Validation
'profile_picture' => 'image|mimes:jpg,png',

View
<input type="file" class="form-control" name="profile_picture" id="profile_picture">

Please or to participate in this conversation.