© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
45 replies
Hightower

Filament Relation Manager - Form Not Updating

Hi, I have a Filament Relation Manager and it's working well for the table part, but the form isn't updating in the browser. For example, the form function is as below:

public function form(Form $form): Form
    {
        return $form
            ->schema([
                Forms\Components\Select::make('user_id')
                    ->multiple()
                    ->preload()
                    ->relationship('mustReadUsers', 'name')
                    ->searchable(),
                Forms\Components\TextInput::make('test')
                    ->label('New field'),
            ]);
    }
public function form(Form $form): Form
    {
        return $form
            ->schema([
                Forms\Components\Select::make('user_id')
                    ->multiple()
                    ->preload()
                    ->relationship('mustReadUsers', 'name')
                    ->searchable(),
                Forms\Components\TextInput::make('test')
                    ->label('New field'),
            ]);
    }


However, this isn't reflected in the browser. Can someone offer some insight to why? I'm guessing the form may be being defined elsewhere instead but I have no idea where to start looking.
Solution
try
$table->recordTitleAttribute('name')
$table->recordTitleAttribute('name')
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

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Filament Relation Manager
FilamentFFilament / ❓┊help
3y ago
Relation manager form
FilamentFFilament / ❓┊help
2y ago
Updating a Relation Manager Form Without Closing
FilamentFFilament / ❓┊help
2y ago
Testing Filament Relation Manager
FilamentFFilament / ❓┊help
2y ago