auth pages not getting css in laravel
The very simple solution for this problem is use the following cdn
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
instead of
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
the links I have provided are the bootstrap cdn and check that . It will work and use
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
instead of
<link href="{{ asset('js/app.js') }}" rel="stylesheet">
Step 1:
- Download nodejs
- Install nodejs in your pc
Step 2:
- then open your project root and command
composer require laravel/ui
php artisan ui vue --auth
npm install
npm run dev
After npm
command it will generate node_module
folder inside your project remove that folder.
npm
command only for .css
and .js
file.
for help see this video: https://www.youtube.com/watch?v=hOYW3jqh19I&t=9s