It seems like you haven't created the symbolic link between storage/app/public
and public/storage
. Laravel requires this link to make files stored in storage/app/public
accessible via the web. Run this command - php artisan storage:link
. You can read more about the link here