Level 18
session()->put('foo' $request->all());
Saves your request (array) to the foo variable in the session.
You can also use this on the $request variable..
$request->session()->put('foo', $request->all())
If you don't have access to $request for whatever reason you can use the helper request() in it's place.