Support the ongoing development of Laravel.io →
Requests Forms

Hello,

I am new to Laravel and vue.

Working with Laravel 5.4

I have a vue script that builds a table.

In each row I have a button that is suppose to submit a form and set the status field to: 2.

The form code:

<form @submit.prevent="submitForm" class="status-form" action="'/orders/' + row.Id" method="post">
....{{ csrf_field() }}
    ....<input type="hidden" name="status" value="2">
    ....<button type="submit" class="btn btn-success btn-sm">Sent</button>
 </form>

If I don't put {{ csrf_field() }} in the code, everything works fine. If I do, the rows are not populated in the table.

I tried: @{{ csrf_field() }} and {!! csrf_field !!} as well, same results.

How do I add this field?

And then, if someone can help and give me the code to actually submit the form?

Another question: Do I need a special route for it or can I use the resource route?

I read lots of posts on google, but very confused and can't find the way to do it.

Last updated 2 years ago.
0

hi, friend. where you are put this code? in blade template?

Yes,

{{ csrf_field() }}

its a right. And you can use this

<input type="hidden" name="_token" value="{{ csrf_token() }}">
Last updated 8 years ago.
0

Hi owl, I put it in the vue file, didn't work. I moved it to the blade file. Thx

0

no please :)

0

Sign in to participate in this thread!

Eventy

Your banner here too?

SigalZ sigalz Joined 5 May 2016

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.