© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•4mo ago•
27 replies
Mydnic

Search input not showing on searchable Select

After upgrading to v4, the searchable select is not working property. The search input is simply not displayed, even though it's present in the DOM.
I did all the upgrade, clear laravel cache, clear browser cache. I'm not using any theme, I don't have any published vendor files. It's a very minimal filament installation for a very little project.
I tried removing everything else from the form and just display the select, still same issue.

Here's the code

    public static function form(Schema $schema): Schema
    {
        return $schema
            ->components([

                Select::make('test')
                    ->label('Test')
                    ->options([
                        'draft' => 'Draft',
                        'reviewing' => 'Reviewing',
                        'published' => 'Published',
                    ])
                    ->searchable(),

            ]);
    }
    public static function form(Schema $schema): Schema
    {
        return $schema
            ->components([

                Select::make('test')
                    ->label('Test')
                    ->options([
                        'draft' => 'Draft',
                        'reviewing' => 'Reviewing',
                        'published' => 'Published',
                    ])
                    ->searchable(),

            ]);
    }
`

When I click the input to open the select, I see the 3 options, but the search input is not displayed. However I can see it in the DOM, with display none. When I remove that style from the devtools, the input appears.
Strangely, when I open the select, I can start typing, and the filtering is working, just the search input is hidden, but I can type in
Screenshot_2025-10-09_at_13.46.55.png
Screenshot_2025-10-09_at_13.47.03.png
Solution
it's PopUpOff extension
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Custom Searchable Input/Select
FilamentFFilament / ❓┊help
15mo ago
searchable on SelectColumn?
FilamentFFilament / ❓┊help
2y ago
Select input not working when searchable is appended
FilamentFFilament / ❓┊help
16mo ago
Select searchable
FilamentFFilament / ❓┊help
2y ago