I am trying to allow users to edit their playlist. However, whenever I try to execute the PATCH request, I get the MethodNotAllowed
Since html forms support only GET and POST you need to add an extra hidden field to the form called _method in order to simulate a PATCH request
GET
POST
_method
PATCH