Para recoger los valores de un formulario tenemos varias opciones:
$input = Input::all();
$input = Input::only('username', 'password');
$input = Input::except('credit_card');
$nombre = Input::get('nombre');
Para recoger los valores de un formulario tenemos varias opciones:
$input = Input::all();
$input = Input::only('username', 'password');
$input = Input::except('credit_card');
$nombre = Input::get('nombre');