Not sure if this helps but do you have this in the template header.
<meta name="csrf-token" content="{{ csrf_token() }}">
and try
@csrf
// instead of
{{ csrf_field() }}
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hello,
I got this error:
(1/1) TokenMismatchException
in VerifyCsrfToken.php (line 68)
checkout.blade.php
<form action="{{ url('/checkout') }}" method="POST" id="myForm">
{{ csrf_field() }}
<div class="checkout-page">
<div class="row">
<div class="col-sm-12 col-md-6">
<div class="form">
<h3 class="form-title">DELIVERY DETAILS</h3>
....
<div class="paymment-method">
<h3 class="form-title">PAYMENT METHOD</h3>
<div class="checkbox">
<label>
<input type="checkbox" value="">
I’VE READ AND ACCEPT THE TERM & CONDITIONS
</label>
</div>
</div>
<button type="submit" class="button pull-right">Checkout</button>
</div>
</div>
</div>
</form>
Any clue why?
Please or to participate in this conversation.