File "7d42a47ea2d28aa684ff9ef840efaf7b.php"
Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/storage/framework/views/7d42a47ea2d28aa684ff9ef840efaf7b.php
File size: 1.65 KB
MIME-type: text/x-php
Charset: utf-8
<?php
$newsletter = App\Models\Newsletter::where('id', $id)->first();
?>
<form action="<?php echo e(route('admin.newsletter.update', $id)); ?>" method="post"><?php echo csrf_field(); ?>
<div class="mb-3">
<label for="subject" class="form-label ol-form-label"><?php echo e(get_phrase('Subject')); ?></label>
<input type="text" name="subject" class="form-control ol-form-control" id="subject" value="<?php echo e($newsletter->subject); ?>" placeholder="<?php echo e(get_phrase('Subject')); ?>" required>
</div>
<div class="mb-3">
<label for="description" class="form-label ol-form-label"><?php echo e(get_phrase('Description')); ?></label>
<textarea name="description" id="description" required><?php echo e($newsletter->description); ?></textarea>
</div>
<div class="fpb-7">
<button type="submit" class="ol-btn-primary"><?php echo e(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>
<?php /**PATH /home2/yvrgircc/public_html/ariseskilltech.com/resources/views/admin/newsletter/edit.blade.php ENDPATH**/ ?>