2019-07-06 15:52:25 +02:00
|
|
|
<div wysiwyg-editor class="flex-fill flex">
|
|
|
|
|
|
|
|
@exposeTranslations([
|
|
|
|
'errors.image_upload_error',
|
|
|
|
])
|
|
|
|
|
|
|
|
<textarea id="html-editor" name="html" rows="5" v-pre
|
2019-09-06 23:14:39 +02:00
|
|
|
@if($errors->has('html')) class="text-neg" @endif>@if(isset($model) || old('html')){{ old('html') ? old('html') : $model->html }}@endif</textarea>
|
2019-07-06 15:52:25 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@if($errors->has('html'))
|
|
|
|
<div class="text-neg text-small">{{ $errors->first('html') }}</div>
|
|
|
|
@endif
|