I'd like to display images in the columns (that are inserted through a drop-down) in the Admin panel. The image does load when inserted, but when I want it to display in the column, it won't load, displaying this:

Here's the code that I'm trying to run:
//Inserting...
return $form
->schema([
FileUpload::make('image')
->image()
->disk('public')
->directory('products')
->imagePreviewHeight('250')
->label('Product Image')
->nullable()
->columnSpan(12),
])
//output...
return $table
->columns([
ImageColumn::make('image')
->label('Image')
->disk('public')
->circular()
->height(50)
->width(50),
])
In DB, it's storing the filepath to the image like so: products/image.png. I made sure that the paths are indeed correct and the link was established.
Note: I found images in two directories: storage/app/public/products/ and public/storage/products/. I also attempted making a link ( php artisan storage:link )
Display an image in the column. Expected to preview it, but it won't load, displaying a weird icon.
Browser console errors: Failed to load resource: net::ERR_BLOCKED_BY_CLIENT Failed to load resource: net::ERR_CONNECTION_REFUSED