I have been searching for an answer to this question with no luck. This is my second day using laravel and I\'m trying to create a custom 404 error page. I don\'t know where
The best way is using blade syntax with the laravel helper for what you need
<link rel="stylesheet" href="{{ asset('css/style.css') }}">
this folder css
or whatever you named it, must be placed inside your public folder.
Place your css files inside public folder and use link tag in html document (or 404 template)
Example
<link rel="stylesheet" type="text/css" href="{{ url('/css/style.css') }}" />
<link rel="stylesheet" href="css/app.css">
simply add this your blade.php file
search for Public folder in laravel
Create css folder(That contain stylesheet files of your project), javascript,and Images folder (contain images that you will use in your project).
. Go to layouts in app.blade.php file update html code using blade sintax .
<link rel="stylesheet" href="{{ asset('css/style.css') }}">
and JS
<script src="{{ asset('pickadate/lib/picker.js')}}"></script>