@shimana It looks like the problem might be that you're initializing the SimpleMDE editor on an AlpineJS x-data block, but you're not binding the value property of the textarea to the description Livewire property.
Try adding x-bind:value="description" to your <textarea> element, so that it looks like this:
This way, when the textarea's value changes, it will also update the description property, which Livewire is listening to.
Also make sure that you are importing the SimpleMDE javascript and css in your blade file
and also check if the SimpleMDE javascript is loaded before your AlpineJs script.
Also make sure that you are importing the SimpleMDE javascript and css in your blade file and also check if the SimpleMDE javascript is loaded before your AlpineJs script.
Yes, I am sure.
now using x-bind:value="description" But it still doesn't work.