Hello Team,
Many times you noticed while we're binding image which comes from database or from cloud and if image does not exist then it's showing missing image like below screenshot.
To overcome such situation add onerror attribute and assign default image path.
e.g.
<img src="@imagePath" onerror="this.src='../images/default-image.png'">
