akaunting 3.0 (the last dance)

This commit is contained in:
Burak Civan
2022-06-01 10:15:55 +03:00
parent cead09f6d4
commit d9c0764572
3812 changed files with 126831 additions and 102949 deletions

View File

@ -1,17 +1,15 @@
@extends('layouts.install')
<x-layouts.install>
<x-slot name="title">
{{ trans('install.steps.language') }}
</x-slot>
@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>
<x-slot name="content">
<div class="form-group mb-0">
<select name="lang" id="lang" size="14" class="w-full 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>
@endsection
</x-slot>
</x-layouts.install>