Are you looking for a preview box @rafidahsan that can show the images? I see you're using a form tag so I'd imagine you want to display the images that are going to be submitted, and subsequentually you'd still want to show the images if the user decides to edit those.
You need a div with an id <img id="imgs"></div>, for the Javascript I just did something similar so here goes, this should preview multiple images that belong to 1 post.
<script>
$("#image").on('change',function() {
var fileList = this.files;
for(var i = 0; i < fileList.length; i++)
{
var t = window.URL || window.webkitURL;
var objectUrl = t.createObjectURL(fileList[i]);
$('#imgs').append(`
<div>
<img class="h-48 border-2" src="` + objectUrl + `" />
</div>`
);
j = i+1;
if(j % 3 == 0)
{
$('#imgs').append('<br>');
}
}
});
</script>