Laravel and Forms

As we create more complex Laravel applications that accepts user inputs, we will need start thinking about making our application more robust and secure. We begin by looking at controllers and how to move the logic of our application from the routes to controller methods. Next we look at the different HTTP requests support by Laravel and how we can utilize them when receive data from a form. Finally, we explore how to best secure our forms from attacks and to validate our data before passing it our database.