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
You cannot have two routes with the same name. Change the name of the route for update.
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.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community