If you have fresh install laravel app.
And did
php artisan make:auth
When you open the login route. The view sucks, why, because css and js is not loaded.
<link href="/css/app.css" rel="stylesheet">
<script src="/js/app.js"></script>
Remove the first '/' in the src or href. Like this
<link href="css/app.css" rel="stylesheet">
<script src="js/app.js"></script>
And it will now work.
your virtual host is pointing to some other directory.. probably..
never use paths without the slash in front. a path should always start with a slash.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community