enbermudas
enbermudas

Reputation: 1615

Laravel & CKEditor - Return with editor old value

I'm validating the editor content on my controller and i want to return the user back to the editor view if its content length is less than 30 characters. Either way, this piece of code:

<textarea name="text-editor" id="text-editor" value="{{ old('text-editor') }}"></textarea>

Does not work because all of the things that CKEditor javascript script does. So, is there a way to put back the editors content when the user writes less than 30 characters?

Upvotes: 0

Views: 1833

Answers (1)

Andrii Lutskevych
Andrii Lutskevych

Reputation: 1389

You should place old value between tags because textarea does not have value property - <textarea name="text-editor" id="text-editor">{{ old('text-editor') }}</textarea>

Upvotes: 3

Related Questions