[V4] InfoList with forms in Filament modals!
I'm trying to make the modal with filament form and text entry together. Is that possible? Upper top of the modal is text entry or custom text entry, bottom is form input.
Solution:Jump to solution
No that's replacing an entire modals content.
On an action you can do:
->form() ...
13 Replies
I think you need just a placeholder in the form itself?
https://filamentphp.com/docs/3.x/forms/layout/placeholder
You can mix and match Forms and Infolists in v4. What issues are you having?
sth like that

That is modal
What issue are you having? Thats just a view field above for the comments and a form a textarea below?
Then you can use them in one?
Yeah I want to use
That I show you is only design
Yes it is the same as I do for my notes modal. The form is the add note and the notes above are the other livewire components just rendered as a view

Is livewire component?
It's just a couple of filament actions, with a form on the action, then sub actions for the additional actions. The comments are a livewire component / blade view
Solution
No that's replacing an entire modals content.
On an action you can do:
->form()
right?
So pass in:
For a rough example
In theory then you could use the TextEntry etc
Thank you so much. I got it.