custom label classname ejected

This commit is contained in:
Burak Civan
2022-06-17 15:02:51 +03:00
parent e69037d61f
commit 949a24d541
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<x-slot name="content">
<div class="form-group mb-0">
<select name="lang" id="lang" size="14" class="w-full form-control-label">
<select name="lang" id="lang" size="14" class="w-full text-black text-sm font-medium">
@foreach (language()->allowed() as $code => $name)
<option value="{{ $code }}" @if ($code=='en-GB' ) {{ 'selected="selected"' }} @endif>{{ $name }}</option>
@endforeach