Remove live.debounce.500ms from wire:model attributes in the registration form fields.

This commit is contained in:
Yoga Pangestu 2026-02-28 15:07:43 +07:00
parent 348e55f1e9
commit 7df0e16914

View File

@ -47,7 +47,7 @@ class="transition-all duration-500 ease-in-out {{ $currentStep === $step['id'] ?
<flux:description>Pastikan email aktif karena akan digunakan untuk verifikasi.
</flux:description>
<flux:input placeholder="info.pangestuyoga@gmail.com" wire:model.live.debounce.500ms="form.email" autofocus
<flux:input placeholder="info.pangestuyoga@gmail.com" wire:model="form.email" autofocus
autocomplete="off" />
<flux:error name="form.email" />
@ -56,7 +56,7 @@ class="transition-all duration-500 ease-in-out {{ $currentStep === $step['id'] ?
<flux:field>
<flux:label>Nama Pengguna <span class="text-red-500 ms-1">*</span></flux:label>
<flux:input placeholder="jonhdoe" wire:model.live.debounce.500ms="form.username" autocomplete="off" />
<flux:input placeholder="jonhdoe" wire:model="form.username" autocomplete="off" />
<flux:error name="form.username" />
</flux:field>
@ -64,7 +64,7 @@ class="transition-all duration-500 ease-in-out {{ $currentStep === $step['id'] ?
<flux:field>
<flux:label>Kata Sandi <span class="text-red-500 ms-1">*</span></flux:label>
<flux:input placeholder="********" type="password" wire:model.live.debounce.500ms="form.password"
<flux:input placeholder="********" type="password" wire:model="form.password"
autocomplete="off" viewable />
<flux:error name="form.password" />
@ -77,7 +77,7 @@ class="transition-all duration-500 ease-in-out {{ $currentStep === $step['id'] ?
<flux:field>
<flux:label>Nama <span class="text-red-500 ms-1">*</span></flux:label>
<flux:input placeholder="John Doe" wire:model.live.debounce.500ms="form.name" autofocus autocomplete="off" />
<flux:input placeholder="John Doe" wire:model="form.name" autofocus autocomplete="off" />
<flux:error name="form.name" />
</flux:field>
@ -86,7 +86,7 @@ class="transition-all duration-500 ease-in-out {{ $currentStep === $step['id'] ?
<flux:label>Nomor Telepon <span class="text-red-500 ms-1">*</span></flux:label>
<flux:input placeholder="0821 xxxx xxxx" mask="9999 9999 99999"
wire:model.live.debounce.500ms="form.phone_number" autocomplete="off" />
wire:model="form.phone_number" autocomplete="off" />
<flux:error name="form.phone_number" />
</flux:field>
@ -94,7 +94,7 @@ class="transition-all duration-500 ease-in-out {{ $currentStep === $step['id'] ?
<flux:field>
<flux:label>Jenis Kelamin <span class="text-red-500 ms-1">*</span></flux:label>
<flux:radio.group wire:model.live.debounce.500ms="form.gender" variant="buttons" class="w-full *:flex-1">
<flux:radio.group wire:model="form.gender" variant="buttons" class="w-full *:flex-1">
@foreach (\App\Enums\Gender::cases() as $gender)
<flux:radio value="{{ $gender->value }}">
{{ $gender->label() }}
@ -106,7 +106,7 @@ class="transition-all duration-500 ease-in-out {{ $currentStep === $step['id'] ?
</flux:field>
<flux:input label="Kode Referral" placeholder="Masukkan kode referral"
wire:model.live.debounce.500ms="form.referral_code" autocomplete="off" />
wire:model="form.referral_code" autocomplete="off" />
</div>
@endif