Whats the maximum file size for an image when building a gallery form, i just tried uploading 3 images of about 6mb each, and the application completely blanked out.
when i try to read the $_Files array of the $_POST data the out put is i.e
dd(Input::file('files'));
and my output is
array( length=0; )
when i tried uploading files of lesser size, it worked perfectly, so i'm asking whats the best and preferred size to limit your images to when working with image uploads in laravel, i know i could adjust the max_file_size setting in the .ini file, but i like working with the defaults.
just incase of next time. thanks. and i would like to know why most importantly. if i am going to be adopting a pattern in my forms for handling images, then i want to keep in mind why i'm doing that.. thanks in anticipation.