The issue seems to be with the base URL configuration in Laravel. You can try updating the APP_URL value in your .env file to remove the /public segment.
For example, if your current APP_URL is http://172.16.155.250/fms/public, change it to http://172.16.155.250/fms.
After making this change, clear your Laravel cache by running php artisan cache:clear and try logging in again to see if the issue is resolved.
If the issue persists, you can also try updating the asset_url value in your config/app.php file to include the correct base URL.
For example, if your APP_URL is http://172.16.155.250/fms, update the asset_url value to 'http://172.16.155.250/fms/'.
// config/app.php
return [
// ...
'asset_url' => env('ASSET_URL', 'http://172.16.155.250/fms/'),
// ...
];
Again, clear your Laravel cache and try logging in to see if the issue is resolved.