How to do validation for multiple images upload in laravel 5.3

后端 未结 1 976
眼角桃花
眼角桃花 2020-12-19 00:51

I\'ve an input

    

and controller function

public fu         


        
相关标签:
1条回答
  • 2020-12-19 01:12

    Move validation outside the loop and try with the rules:

     'image' => 'required',
     'image.*' => 'image|mimes:jpeg,png,jpg,gif,svg|max:2048'
    
    0 讨论(0)
提交回复
热议问题