papipsycho
Having a page with form and action button to save
my form is pretty "normal" according to me
public function form(Form $form): Form
{
return $form
->schema([
TextInput::make('title')->required(),
TextInput::make('slug'),
RichEditor::make('content'),
]);
}
and from the blade file
<x-filament-panels::page>
{{ $this->form }}
</x-filament-panels::page>
18 replies