Reputation: 407
When I try to upload an image within Laravel the validation is not working. Here my validation string...
'cover' => 'required|image|mimes:jpeg,png,jpg,gif,svg|max:2048'
The validation error I get is The cover must be an image
. It does work however when I only have the required rule.
What is the problem?
Upvotes: 0
Views: 2242
Reputation: 31
You can remove the rule 'image'
on your validation :
'cover' => 'required|mimes:jpeg,png,jpg,gif,svg|max:2048',
Hope it help u :)
Upvotes: 1