Input Wrapper Blade
I have this code
How could I transform this to move the Text1/Text2 in between inputs? Or any other alternative solution? Thanks
<x-filament::input.wrapper>
<x-slot name="prefix">
<x-filament::input
type="text"
wire:model="text1"
/>
</x-slot>
<x-filament::input
type="text"
wire:model="text2"
/>
<x-slot name="suffix">
Text1/Text2
</x-slot>
</x-filament::input.wrapper>How could I transform this to move the Text1/Text2 in between inputs? Or any other alternative solution? Thanks
