@vandyczech , like @JeffreyWay said
for PATCH requests do this
<form method='POST' action='articles' accept-charset='UTF-8'>
<input type='hidden' name='_token' value='OlTER5KJfgVoJ6CLKI2EAsx6rYhmUWAuBOlXYgWO'>
<input type='hidden' name='_method' value='PATCH'>
for PUT requests do this other one
<form method='POST' action='articles' accept-charset='UTF-8'>
<input type='hidden' name='_token' value='OlTER5KJfgVoJ6CLKI2EAsx6rYhmUWAuBOlXYgWO'>
<input type='hidden' name='_method' value='PUT'>
for DELETE requests do this other one
<form method='POST' action='articles' accept-charset='UTF-8'>
<input type='hidden' name='_token' value='OlTER5KJfgVoJ6CLKI2EAsx6rYhmUWAuBOlXYgWO'>
<input type='hidden' name='_method' value='DELETE'>
This is to make sure that even on dated browsers you laravel forms will work fine.