Repeater does not work on customized page

The add button does not work, my code:
`
                Section::make('Receivers')
                    ->schema([
                        Repeater::make('receiver')
                            ->live()
                            ->schema([
                                Grid::make(3) 
                                    ->schema([
                                        TextInput::make('name'),
                                    ])
                            ])
                    ])
image.png
Solution
make sure you're calling $this->form->fill() in the mount method.
Was this page helpful?