Search code examples
phplaravellaravel-5laravel-artisan

Laravel 5.3 Default Authentication Styles not applying


I created a fresh laravel 5.3 project inside my xampp localhost environment. I went to the home page and it appeared as usual, with the pretty styles and all.
But there is the new artisan command make:auth that sets-up a functioning registration system. But when I go to the register or login page, it should appear with the pretty styles, but instead it's appearing like this:

enter image description here

Any help?


Solution

  • Try this

    -Make sure that you are extending the master layout file(the default or your custom one)

    -changes links like this

    <link rel="stylesheet" type="text/css" href="{{asset('css/mycss')">
    

    Share more code please if this did not work (folder structure , register.php)