How to add background image in laravel 9
I am trying to add a background image for my website in Laravel 9.51. I've used this in my css file: body { background-image: url("background.jpg"); } But it doesn't work. Also tried: body { background-image: url({{asset('background.jpg')}}); } but it doesn't…