@codingwithrk If the .env
ASSET_URL=https://meggreen.codingwithrk.com/public
then you can use the path in the template
<img src="{{ asset('storage/upload/01HM700SZHWAY45102027MWCC1.jpg') }}">
which will actually lead to the following path on the img
<img src="https://meggreen.codingwithrk.com/public/storage/upload/01HM700SZHWAY45102027MWCC1.jpg">
Also try clearing the cache
php artisan cache:clear
php artisan config:clear
php artisan view:clear