How to validate max size images individually?

SpatieMediaLibraryFileUpload::make('carousel')
    ->multiple()
    ->maxSize(4096)

for each uploaded image, i want it to not overpass 4096, is that possible anyhow or it will just set the max size for all images?
Was this page helpful?