In you route make sure you are using PUT
Route::put('/foo/bar', [YourController::class, 'update']);
And also add @csrf token
<form action="/foo/bar" method="POST"> @csrf @method('PUT') <!-- Your form inputs go here --> </form>