@@include('styles.html')
@@include('header.html') @@include('side-header.html')

Form / Editors

Summernote

How To Use

Basic Use HTML
<textarea class="summernote" ></textarea>
Js Activation
$('.summernote').summernote({
    height: 250,
});

For more Information please follow the Official Documentation

Quill

Hello World!

Some initial bold text


How To Use

Basic Use HTML
<div class="quill"></div>
Js Activation
var quill = new Quill('.quill', {
    theme: 'snow'
});

For more Information please follow the Official Documentation

@@include('footer.html')
@@include('scripts.html')