I am trying to set a background image as gried.png in welcome.blade.php within my app. I have created a class selector file in the css folder for this purpose. Below is the content of my welcome.css file located in the public/css folder:
.background-image{
background-image: transparent url("/imgs/grid.png");
background-repeat: repeat;
}
Here is the code snippet from my welcomeblade.php file:
<link rel="stylesheet" href="/css/welcome.css" />
<div class="background-image"></div>
However, the background image is not displaying. Can anyone help me troubleshoot and fix this issue?