Taylor Otwell (creator of laravel ) said these were removed because they became a burden to the framework community , bringing too much syntax debates regarding personal preferences , and this was uncalled for . And it stills down to personal preference, some developers still install this package and use for their projects , but for the community, its generally sticking with normal forms , which think is pretty awesome by the way . Its just better not learning to many new things So a normal laravel form should look like this
<form action="{{ url('/foo') }}" method="get/post">
{{ csrf_field() }}
<!-- Some usual form fields -->
<input type="submit" value="submit">
</form>
So, just your typical form . And the csrf_field here generates this :
<input type="hidden" name="_token" value="some-token like t5tkamdf663r20o)O@_@OI@#I@#died3">
This token is sent with every laravel request to prevent a fraud called CROSS REQUEST SITE FORGERY , and you can read more about this online. And of course you will see {{ csrf_token() }}, which just returns the token . Good luck bro, hope i was helpful.