This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="w-64"> | |
<select multiple x-data="multiselect" name="mySelect"> | |
<optgroup label="Names"> | |
<option value="1">John</option> | |
<option value="2">Peter</option> | |
<option value="3">Jane</option> | |
<option value="4">Her Name is Very Long</option> | |
<option value="5">His Name is Much Much Much Longer</option> | |
</optgroup> | |
<optgroup label="Cities"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{form myForm} | |
<div class="form-group"> | |
{label book class => 'control-label'/} | |
{input book class => form-control} | |
</div> | |
<div class="form-group"> | |
{input send class => 'btn btn-primary'} | |
</div> | |
{/form} |