I have a form that accepts data which will be used to create two new database table entries. The form takes both the users details and their address. The user details will be st
Have you tried looking at Input::only('field1','field2',...);, or even Input::except('field3')? They should be able to accomplish what you are looking for.