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

12 lines
276 B
PHP

<div>
<x-select
label="{{ $label }}"
placeholder="{{ __('You can select multiple languages') }}"
multiselect
:options="$langOptions"
option-label="name"
option-value="id"
wire:model.live="langSelected"
/>
</div>