Setting email editor issue solved.
This commit is contained in:
@@ -9,6 +9,8 @@
|
||||
|
||||
<script src="{{ asset('public/js/common/search.js?v=' . version('short')) }}"></script>
|
||||
|
||||
<script src="{{ asset('public/0.js?v=' . version('short')) }}"></script>
|
||||
|
||||
<script src="https://unpkg.com/vue"></script>
|
||||
|
||||
@stack('charts')
|
||||
|
||||
19
resources/views/partials/form/text_editor_group.blade.php
Normal file
19
resources/views/partials/form/text_editor_group.blade.php
Normal file
@@ -0,0 +1,19 @@
|
||||
@stack($name . '_input_start')
|
||||
|
||||
<div
|
||||
class="form-group {{ $col }} {{ isset($attributes['required']) ? 'required' : '' }}"
|
||||
:class="[{'has-error': {{ isset($attributes['v-error']) ? $attributes['v-error'] : 'form.errors.get("' . $name . '")' }} }]">
|
||||
{!! Form::label($name, $text, ['class' => 'form-control-label']) !!}
|
||||
|
||||
<html-editor
|
||||
:name="'{{ $name }}'"
|
||||
:value="form.{{ $name }} = '{{ $value }}'"
|
||||
@input="form.{{ $name }} = $event"></html-editor>
|
||||
|
||||
<div class="invalid-feedback d-block"
|
||||
v-if="{{ isset($attributes['v-error']) ? $attributes['v-error'] : 'form.errors.has("' . $name . '")' }}"
|
||||
v-html="{{ isset($attributes['v-error-message']) ? $attributes['v-error-message'] : 'form.errors.get("' . $name . '")' }}">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stack($name . '_input_end')
|
||||
Reference in New Issue
Block a user