Files
timebank-cc-public/resources/views/livewire/category-selectbox.blade.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

14 lines
391 B
PHP

<div>
<x-select
label="{{ __('Category') }} * "
placeholder="{{ __('Select a category') }}"
:options="$categoryOptions"
option-label="name"
option-value="category_id"
wire:model.live="categorySelected"
/>
@error('categoryId')
<div class="mt-2 text-sm text-red-600" id="category-error">{{ $message }}</div>
@enderror
</div>