public static $rules = [
'logo'=> 'required|image|mimes:jpeg,bmp,png'
];
It returns error though the given image types are valid.. what's the solution?? the rule mentioned above works fine without this package.. i am using laracast's form validator package.. thank you
public static $rules = [ 'logo'=> 'required|image|mimes:jpeg,bmp,png' ]; It returns error though the given image types are valid.. what's the solution?? the rule mentioned above works fine without this package.. i am using laracast's form validator package.. thank you