Filamentphp in shared hosting
i have problem when upload my project in shared hosting i not have sub domain to add the request to public dir
and when try to access the project by write the public in url this error message show
The POST method is not supported for route admin/login
i used filament V3 with laravel 10 and php 8.2.26
and when try to access the project by write the public in url this error message show
The POST method is not supported for route admin/login
i used filament V3 with laravel 10 and php 8.2.26

Solution
@charlie @igorclauss
now it work after i publish the livewire assets
and add this code in route provider
Livewire::setUpdateRoute(function ($handle) {
return Route::post('/test-app/public/livewire/update', $handle)
->middleware('web');
});
now it work after i publish the livewire assets
and add this code in route provider
Livewire::setUpdateRoute(function ($handle) {
return Route::post('/test-app/public/livewire/update', $handle)
->middleware('web');
});