How do I create 3 WYSIWYG editors ? is it possible?
I am trying to replicate this page in filament, is it possible to create 3 richeditors at the same page?

24 Replies
Wouldn’t this just be a simple matter of having
RichEditor::make('content1')
RichEditor::make('content2’)
etc
RichEditor: https://filamentphp.com/docs/3.x/forms/fields/rich-editor#overview
If you are using a resource:
If you are using a custom livewire component, follow this section
I see, that was just a simple implementation
Sorry bout that
Question whats the difference between Form and getFormSchema ?
Is form usually for a resource?
I think
getFormSchema
is deprecatedI am still able to used it on the other forms though..
you can still use this method, but
form()
is recommended
https://github.com/filamentphp/filament/blob/3.x/packages/forms/src/Concerns/InteractsWithForms.php
GitHub
filament/packages/forms/src/Concerns/InteractsWithForms.php at 3.x ...
A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS. - filamentphp/filament
Do you know why my forms are getting undefined even though thr queryies have values?

I already fixed the keys to the fill([])
But still same issue
console errors? Did you config a statePath?
console errors

Filament
Form Builder - Common Errors to Avoid by Leandro Ferreira - Filament
A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS.
I get a different outcome


You should check the values that are being filled into the editors 🤷♂️
$this->form->fill(['get_started_content' => 'xxxx'])
should workYou are right
I am now able to displa y this value

Hi how do I properly implement the save/update function?
Yeah this is the only problem I have
is that the tw arent working correectly but thaanks for the solution

you can also add an action as submit button
https://filamentphp.com/docs/3.x/actions/adding-an-action-to-a-livewire-component#adding-the-action
or use a blade component
https://filamentphp.com/docs/3.x/support/blade-components/button
is the Action at deleteAction required here? for it to be acknowledege as an action btn
That worked, thank you. just a bit of alighments and im good to go
