[3.x] 404 for all actions in the form package.

I'm trying to use the form package but any action returns 404. search with select, click on form action.
Solution
Route::group(['prefix' => LaravelLocalization::setLocale()], function ()
{
    // Your other localized routes...
 
    Livewire::setUpdateRoute(function ($handle) {
        return Route::post('/livewire/update', $handle);
    });
});
Was this page helpful?