© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
3 replies
leoblanski

RichEditor doesn't upload Image on Simple Resource (Modal)

Could anyone help me with this point pls ?

Basically what I'm doing is creating a new RichEditor component into form, it works perfectly when I'm using complete resources (With CRUD pages), but for some reason, I don't know if it's a bug or I'm doing something wrong, when using in a simple resource, generatated simply with "php artisan filament:resource TestResource --simple" it doesn't work...

Same code in each resource:

public static function form(Form $form): Form
    {
        return $form
            ->schema([
                RichEditor::make('body')
                    ->label('Description')
                    ->required(),
            ]);
    }
public static function form(Form $form): Form
    {
        return $form
            ->schema([
                RichEditor::make('body')
                    ->label('Description')
                    ->required(),
            ]);
    }


Returns: Uncaught Could not find Livewire component in DOM tree on console
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

RichEditor upload an image
FilamentFFilament / ❓┊help
3mo ago
Simple Resource Modal Width
FilamentFFilament / ❓┊help
3y ago
Simple modal resource extra actions
FilamentFFilament / ❓┊help
2y ago
Query string on simple resource modals
FilamentFFilament / ❓┊help
2y ago