Markus
Markus

Reputation: 407

Laravel Image Upload Validation Fails

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

Answers (2)

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

Jinal Somaiya
Jinal Somaiya

Reputation: 1971

try this

'cover' => 'required|image|max:2048',

Upvotes: 0

Related Questions