dashboard filtersForm() not showing up

My dashboard extends Filament\Pages\Dashboard, on that dashboard page i have the Filament\Pages\Dashboard\Concerns\HasFiltersForm.
I added the filtersForm() like this:
    public function filtersForm(Form $form): Form
    {
        return $form
            ->schema([
                Section::make([
                    DatePicker::make('from')
                        ->label('From')
                        ->default(Carbon::now()->subMonth()),
                    DatePicker::make('to')
                        ->label('To')
                        ->default(Carbon::now()),
                ]),
            ]);
    }

Still i don't see any form at the dashboard page.
Was this page helpful?