Hide TextInput form field but keep spacing it's spacing
Hi, I am looking for a way to conditionally hide a TextInput field, without messing up the height of the schema, is this possible?
This is my TextInput field:
Which is used in a Repeater item schema like this:
Solution:Jump to solution
Nice question 😉 you mean invisible? Maybe try this
```PHP
Forms\Components\TextInput::make('other_reason_text')
->extraFieldWrapperAttributes(function (Forms\Get $get){...
3 Replies