Laravel – Put a modal form in middle of the form in filament v3
How can I make 'price' to be recognized as a member of the form? public static function form(Form $form): Form { return $form ->schema([ Wizard::make([ WizardStep::make('First Step') ->schema([ TextInput::make('title')->required(), FormsComponentsActions::make([ Action::make('Custom Modal') ->button() ->form([ TextInput::make('price')->prefix('$')->required(), ]) ]), WizardStep::make('Second Step') ->schema([…