How to ignore rerendering on laravel livewire component until we submit the form

I have a wizard form that is a livewire component and it always rerender when i am typing. I want to stop de rerendering until i submit the form.

Who can help me please ? Sorry for the bad english i’m french.

1 Like

Did you try wire:model.lazy ?

<input wire:model.lazy="first_name" id="first_name" type="text"/>
                </div>
                @if($first_name)
                    <p>{{ $first_name }}Test to see that it is not rendering on every key press</p>
                @endif