Support the ongoing development of Laravel.io →
Forms Eloquent Laravel.io

Gentlemen, I have had a problem for days, without getting a solution. I try to pass the route, but a question mark (?) Always appears before the desired ID. Example: Editing Community Members. / member / edit? 2 ... if I do it with the first member of the list / member / edit? 1 and with the third member of the list / member / edit? 3

How do I remove this interrogation ??? see my ROUTE. Help me please.larave Formulário:

<form method="POST" action="{{route('member.edit', $member->id)}}" class="panel-body form-horizontal form-padding" enctype="multipart/form-data">

web.php Route::get('/member/{id}/edit', 'MemberController@edit')->name('member.edit'); Route::post('/member/edit', 'MemberController@update')->name('member.edit');

The first one loads the database values into the form in the get .. The second one when sending (post) is that it gives an error ... nor does it hurt the update method.

O erro é: Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException No message

Last updated 2 years ago.
0

You cannot have two routes with the same name. Change the name of the route for update.

agjino liked this reply

1
moderator

For any none GET route you need to have a csrf token. That is missing in your form, you can add it with @csrf in your form.

See: https://laravel.com/docs/7.x/csrf for more information.

0

You need to specify the method inside the form with @method('PUT')

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.