Why don't you just try it? Much quicker than waiting for a response here. There're only so many possibilities, after all. Here are a couple that come to mind:
Input::get('user.username'); // not sure if dot notation works here
Input::get('user')['username']; // this should work
But if you're gonna work with all of the values anyways, why not just do this?
$user = Input::get('user');
$user['username'];
...
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community