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

16 lines
550 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">
2022-06-01 07:15:55 +00:00
@foreach (language()->allowed() as $code => $name)
<option value="{{ $code }}" @if ($code=='en-GB' ) {{ 'selected="selected"' }} @endif>{{ $name }}</option>
@endforeach
</select>
2017-09-14 19:21:00 +00:00
</div>
2022-06-01 07:15:55 +00:00
</x-slot>
</x-layouts.install>