111 lines
5.1 KiB
PHP
111 lines
5.1 KiB
PHP
@php
|
|
$currentLang = session()->get('user.language', config('app.locale'));
|
|
$rtlLangs = config('constants.langs_rtl', []);
|
|
if (! is_array($rtlLangs)) {
|
|
$rtlLangs = [];
|
|
}
|
|
$rtlLangs = array_unique(array_merge($rtlLangs, ['fa']));
|
|
@endphp
|
|
<!DOCTYPE html>
|
|
<html lang="{{ app()->getLocale() }}" dir="{{ in_array($currentLang, $rtlLangs) ? 'rtl' : 'ltr' }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<!-- Tell the browser to be responsive to screen width -->
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
|
|
<!-- CSRF Token -->
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>@yield('title') - {{ config('app.name', 'POS') }}</title>
|
|
|
|
@include('layouts.partials.css')
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
|
|
</head>
|
|
|
|
<body>
|
|
@if (session('status'))
|
|
<input type="hidden" id="status_span" data-status="{{ session('status.success') }}" data-msg="{{ session('status.msg') }}">
|
|
@endif
|
|
@inject('request', 'Illuminate\Http\Request')
|
|
<div class="container-fluid">
|
|
<div class="row eq-height-row">
|
|
<div class="col-md-5 col-sm-5 hidden-xs left-col eq-height-col" >
|
|
<div class="left-col-content login-header">
|
|
<div style="margin-top: 50%;">
|
|
<a href="/">
|
|
@if(file_exists(public_path('uploads/logo.png')))
|
|
<img src="/uploads/logo.png" class="img-rounded" alt="Logo" width="150">
|
|
@else
|
|
{{ config('app.name', 'ultimatePOS') }}
|
|
@endif
|
|
</a>
|
|
<br/>
|
|
@if(!empty(config('constants.app_title')))
|
|
<small>{{config('constants.app_title')}}</small>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-7 col-sm-7 col-xs-12 right-col eq-height-col">
|
|
<div class="row">
|
|
<div class="col-md-3 col-xs-4" style="text-align: left;">
|
|
<select class="form-control input-sm" id="change_lang" style="margin: 10px;">
|
|
@foreach(config('constants.langs') as $key => $val)
|
|
<option value="{{$key}}"
|
|
@if( (empty(request()->lang) && config('app.locale') == $key)
|
|
|| request()->lang == $key)
|
|
selected
|
|
@endif
|
|
>
|
|
{{$val['full_name']}}
|
|
</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
<div class="col-md-9 col-xs-8" style="text-align: right;padding-top: 10px;">
|
|
@if(!($request->segment(1) == 'business' && $request->segment(2) == 'register'))
|
|
<!-- Register Url -->
|
|
@if(config('constants.allow_registration'))
|
|
<a href="{{ route('business.getRegister') }}@if(!empty(request()->lang)){{'?lang=' . request()->lang}} @endif" class="btn bg-maroon btn-flat" ><b>{{ __('business.not_yet_registered')}}</b> {{ __('business.register_now') }}</a>
|
|
<!-- pricing url -->
|
|
@if(Route::has('pricing') && config('app.env') != 'demo' && $request->segment(1) != 'pricing')
|
|
<a href="{{ action([\Modules\Superadmin\Http\Controllers\PricingController::class, 'index']) }}">@lang('superadmin::lang.pricing')</a>
|
|
@endif
|
|
@endif
|
|
@endif
|
|
@if($request->segment(1) != 'login')
|
|
<span class="text-white">{{ __('business.already_registered')}} </span><a href="{{ action([\App\Http\Controllers\Auth\LoginController::class, 'login']) }}@if(!empty(request()->lang)){{'?lang=' . request()->lang}} @endif">{{ __('business.sign_in') }}</a>
|
|
@endif
|
|
</div>
|
|
@yield('content')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Scripts -->
|
|
@include('layouts.partials.javascripts')
|
|
<script src="{{ asset('js/login.js?v=' . $asset_v) }}"></script>
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$('.select2_register').select2();
|
|
|
|
$('input').iCheck({
|
|
checkboxClass: 'icheckbox_square-blue',
|
|
radioClass: 'iradio_square-blue',
|
|
increaseArea: '20%' // optional
|
|
});
|
|
|
|
$('#change_lang').change( function(){
|
|
window.location = "{{ route('repair-status') }}?lang=" + $(this).val();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |