Fixed encoded characters.

This commit is contained in:
2026-07-01 15:11:18 +02:00
parent db2d336b24
commit 6ace975ab8
5 changed files with 287 additions and 460 deletions

View File

@@ -121,7 +121,7 @@
<div class="form-group" x-ref="descriptionField">
<x-form-field-title name="{{ $words['description'] }}" helper="You must write in markdown. Click on the interrogation mark in the toolbar to learn more about Markdown." required="true" />
<x-markdown-textarea name="description" value="{{ old('description', $entry->description ?? '') }}" />
<x-markdown-textarea name="description" value="{!! old('description', $entry->description ?? '') !!}" />
<div class="form-error-text" x-show="errorKey === 'noDescription'" x-text="errorMessage"></div>
@error('description')
<x-form-error-text message="{{ $message }}" />