refactor(product , bottle): menyesuaikan palceholder

This commit is contained in:
Yoga Pangestu 2025-11-12 19:44:42 +07:00
parent eb089df36a
commit 694d4ebbce
2 changed files with 4 additions and 4 deletions

View File

@ -20,14 +20,14 @@
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<flux:field>
<flux:label>Nama <span class="text-red-500 ms-1">*</span></flux:label>
<flux:input placeholder="Contoh: Le Labo"
<flux:input placeholder="Le Labo"
wire:model.live.debounce.500ms="form.name" autofocus autocomplete="off" />
<flux:error name="form.name" />
</flux:field>
<flux:field>
<flux:label>Ukuran <span class="text-red-500 ms-1">*</span></flux:label>
<flux:input placeholder="Contoh: 35" wire:model.live.debounce.500ms="form.size"
<flux:input placeholder="35" wire:model.live.debounce.500ms="form.size"
autocomplete="off" />
<flux:error name="form.size" />
</flux:field>

View File

@ -20,14 +20,14 @@
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<flux:field>
<flux:label>Nama <span class="text-red-500 ms-1">*</span></flux:label>
<flux:input placeholder="Contoh: Air Zam Zam"
<flux:input placeholder="Air Zam Zam"
wire:model.live.debounce.500ms="form.name" autofocus autocomplete="off" />
<flux:error name="form.name" />
</flux:field>
<flux:field>
<flux:label>SKU <span class="text-red-500 ms-1">*</span></flux:label>
<flux:input placeholder="Contoh: 001" wire:model.live.debounce.500ms="form.sku"
<flux:input placeholder="001" wire:model.live.debounce.500ms="form.sku"
autocomplete="off" copyable />
<flux:error name="form.sku" />
</flux:field>