For Examle I have Request Validation
'images.*' => 'mimes:jpg,jpeg|max:10240',
'images' => 'max:5',
It work In Create But , in update how I can check It , for example I already uploaded 4 image And In update I must add Only One Image , How I can validate it , is there any idea
How about setting the validation value dynamically? Like, fetch the image record count first then set the value for the image validation.