Prevent auto process when type in form

I have a problem when create a simple form with liveware, every type that I input is immediately processed so that it appears loading and after a lot of typing, an error appears like in the images, how to solve this problem and prevent auto processing when typing?

I use liveware 1.3

Screenshot

You should use wire:model.lazy to send data on blur and not on typing. Also, from what I see in the error, your form is accessible by POST method only?

@vtalbot thanks for your help, it’s working to send data on blur, but do you have another solution to send data only after clicking the submit button?

And about the error, I don’t know why my form is accessible by POST method only, I just coded Route::livewire(’/login’,‘login’) in the routes

´wire:model.defer´ Will wait for an action to send data