Focus the first matched item && enter event adds existing item that is matched

This commit is contained in:
benguozakinci@gmail.com
2021-08-24 15:42:01 +03:00
parent fe4190c680
commit 0820b70a78
3 changed files with 41 additions and 136 deletions

View File

@ -3,15 +3,5 @@
@section('header', trans('install.steps.language'))
@section('content')
<div class="row">
<div class="col-md-12">
<div class="form-group mb-0">
<select name="lang" id="lang" size="14" class="col-xl-12 form-control-label">
@foreach (language()->allowed() as $code => $name)
<option value="{{ $code }}" @if ($code == 'en-GB') {{ 'selected="selected"' }} @endif>{{ $name }}</option>
@endforeach
</select>
</div>
</div>
</div>
@endsection