I don't seem to be able to set a "large" values to a session variable. I tried setting a 1000 character piece of text and it's not being stored.
Session::put('key',$text);
This is also an issue when validating forms with lots of inputs. The values of the inputs don't necessarily need to be large to make it crash. If the form has lots of inputs and there is a validation error that needs to be propagated back to the view "->withInput()", all the input gets lost as well.
I tried with cookie and file session handlers and set session max size to 4KB and also 8KB.
Laravel 5.2.