Akaunting/resources/views/install/language/create.blade.php

16 lines
543 B
PHP
Raw Normal View History

2022-06-01 07:15:55 +00:00
<x-layouts.install>
<x-slot name="title">
{{ trans('install.steps.language') }}
</x-slot>
2017-09-14 19:21:00 +00:00
2022-06-01 07:15:55 +00:00
<x-slot name="content">
2022-06-29 09:49:23 +00:00
<div class="mb-0">
2022-06-17 12:02:51 +00:00
<select name="lang" id="lang" size="14" class="w-full text-black text-sm font-medium">
2023-02-15 20:08:28 +00:00
@foreach ($lang_allowed as $code => $name)
<option value="{{ $code }}" @if ($code == $locale) {{ 'selected="selected"' }} @endif>{{ $name }}</option>
2022-06-01 07:15:55 +00:00
@endforeach
</select>
2017-09-14 19:21:00 +00:00
</div>
2022-06-01 07:15:55 +00:00
</x-slot>
</x-layouts.install>