© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•14mo ago•
5 replies
Firebat

Custom page form repeater livewire error: property does not exist

This happens whenever I have a field inside of the repeater, i tested with select and text input
class PeticaoInicialFormPage extends Page
{
    protected static ?string $navigationIcon = 'heroicon-o-document-text';

    protected static string $view = 'filament.pages.peticao-inicial-form-page';

    protected static ?string $navigationLabel = 'Criar Petição Inicial';

    protected static ?string $title = 'Petição Inicial';

    public function form(Form $form): Form
    {
        return $form
            ->schema([
                Repeater::make('index')
                ->label('')
                ->collapsible()
                ->addActionLabel('Adicionar Tema')
                ->schema([
                    TextInput::make('Nome')
                ]),
            ]);
    }

    protected function getHeaderActions(): array
    {
        return [
            Action::make('Gerar')
                ->requiresConfirmation(),
        ];
    }
}
class PeticaoInicialFormPage extends Page
{
    protected static ?string $navigationIcon = 'heroicon-o-document-text';

    protected static string $view = 'filament.pages.peticao-inicial-form-page';

    protected static ?string $navigationLabel = 'Criar Petição Inicial';

    protected static ?string $title = 'Petição Inicial';

    public function form(Form $form): Form
    {
        return $form
            ->schema([
                Repeater::make('index')
                ->label('')
                ->collapsible()
                ->addActionLabel('Adicionar Tema')
                ->schema([
                    TextInput::make('Nome')
                ]),
            ]);
    }

    protected function getHeaderActions(): array
    {
        return [
            Action::make('Gerar')
                ->requiresConfirmation(),
        ];
    }
}

the blade file
```<x-filament-panels::page>
{{ $this->form }}
</x-filament-panels::page>
Solution
And then use InteractsWithForms
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

Repeater::simple does not exist
FilamentFFilament / ❓┊help
3y ago
resetPage does not exist on custom page
FilamentFFilament / ❓┊help
3y ago
Livewire custom page
FilamentFFilament / ❓┊help
3y ago
Target class [livewire] does not exist.
FilamentFFilament / ❓┊help
11mo ago