For the past hour I haven't been able to figure out why I can't update a form of a model that I have and it's getting really annoying.
Web.php
Route::get('/listings/edit/{listing}', [ListingController::class, 'edit']);
Route::put('/listings/update/{listings}', [ListingController::class, 'update']);
any help would be greatly appreciated!