<div id="quill_editor"></div>
<input type="hidden" id="quill_html" name="name"></input>
<script>
var quill = new Quill('#quill_editor', {
theme: 'snow'
});
quill.on('text-change', function(delta, oldDelta, source) {
document.getElementById("quill_html").value = quill.root.innerHTML;
});
</script>