DEV Community

Discussion on: Laravel for Beginners : a Quick Guide - 7

Collapse
 
hbgl profile image
hbgl

I think you should revisit this post and change the form method from GET to POST. A form with the GET method has no CSRF protection whatsoever and it is easily exploitable.

Collapse
 
kartikbhat profile image
Kartik Bhat • Edited

Yeah, But I am introducing that concept in my next article, here just to understand how actually data flow from user interface to backend, purposefully I kept it as GET, not to mess with @csrf concept at this stage itself;

:)

Thank You