I'm working on a laravel project which should fetch content of home page (HTML Content) from database and display it inside Summernote rich text editor. Summernote displays my HTML Content well but doesnot display images. On checking code displayed in summernote, It had replaced / character with "". The same image gets displayed if pasted directly inside textarea and not fetched from dB. I tried some solutions found online and on stackoverflow but they didn't work for me.
$(document).ready(function() {
$('#summernote').summernote(
{
tabsize: 2,
height: 400
});
});
<form method="post">
<div>
<textarea class="summernote" id="summernote" name="editordata"><div class="row-iconbox our-support-block">
{!!$cms_home->homepage_content!!}
</textarea>
</div>
</form>