Skip to content
Advertisement

Laravel 6 user auth page not working properly

Today I installed laravel 6.x version for a new project.

I have PHP 7.3 in my system so laravel 6 was successfully installed.

Then I run this command to set the Auth UI for VueJS.

artisan ui vue —auth

along with this command:

composer require laravel/ui --dev

But when I checked my login page, it was just an html skeleton.

I checked over the internet and found a solution and tried to run this command,

npm run dev

But still am getting an ugly login page without css and Js files. I checked for CSS and JS files but found no solution.

Anyone please help and tell me how can I setup the front end scaffolding.

Thanks in advance

Advertisement

Answer

The command to implement Auth is as follows:

composer require laravel/ui
php artisan ui vue --auth

If your Login and Register page only shows plain HTML. And CSS is not loading properly then run this two command:

npm install
npm run dev

OR

Simply you’ve to follow this two-step.

composer require laravel/ui
php artisan ui:auth
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement