37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
<form action="{{ route('admin.newsletter.store') }}" method="post">
|
|
@csrf
|
|
|
|
<div class="mb-3">
|
|
<label for="subject" class="form-label ol-form-label">{{ get_phrase('Subject') }}</label>
|
|
<input type="text" name="subject" class="form-control ol-form-control" id="subject" placeholder="{{ get_phrase('Subject') }}" required>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="description" class="form-label ol-form-label">{{ get_phrase('Description') }}</label>
|
|
<textarea name="description" id="description" required></textarea>
|
|
</div>
|
|
|
|
<div class="fpb-7">
|
|
<button type="submit" class="ol-btn-primary">{{ get_phrase('Submit') }}</button>
|
|
</div>
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
"use strict";
|
|
|
|
$('#description').summernote({
|
|
height: 180, // set editor height
|
|
minHeight: null, // set minimum height of editor
|
|
maxHeight: null, // set maximum height of editor
|
|
focus: true, // set focus to editable area after initializing summernote
|
|
toolbar: [
|
|
['color', ['color']],
|
|
['font', ['bold', 'italic', 'underline', 'clear']],
|
|
['fontsize', ['fontsize']],
|
|
['para', ['ul', 'ol']],
|
|
['table', ['table']],
|
|
['insert', ['link']]
|
|
]
|
|
});
|
|
</script>
|