On the Laravel News site there's a new post sharing some of the new Blade directives coming in the 5.6 version of the Laravel framework.
Laravel 5.6 will include two new form blade directives for cross-site request forgery (CSRF) and HTTP method input, thanks to Taylor Otwell.
The new CSRF handling replaces the previously used format with a simple @csrf
tag in the Blade template (inside of the form). The other is related to the method used to submit the form. The new addition allows you to submit the form via something other than POST using the method_field
function.