# Send a form using PUT instead of POST

**URL:** https://discourse.slimframework.com/t/send-a-form-using-put-instead-of-post/6252
**Category:** Questions
**Created:** [September 24, 2026, 4:31pm UTC](https://discourse.slimframework.com/t/send-a-form-using-put-instead-of-post/6252 "2026-09-24T16:31:58Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![thierryler](https://yyz2.discourse-cdn.com/flex030/user_avatar/discourse.slimframework.com/thierryler/32/1115_2.png) [@thierryler](https://discourse.slimframework.com/u/thierryler)
#### Post date: [September 24, 2026, 4:31pm UTC](https://discourse.slimframework.com/t/send-a-form-using-put-instead-of-post/6252/1 "2026-09-24T16:31:58Z")

</div>

I was wondering whether it’s possible to submit a form using a method other than POST in Slim, for example PUT, PATCH, etc.

With Laravel, you can use the `@method('PATCH')` directive, which adds the necessary information to the form, and then use `patch()` instead of `post()` in the router.
