@extends('layouts.app') @section('title', __('business.system_settings')) @section('content')

@lang('business.system_settings')

{!! Form::open(['url' => action('BusinessController@postSystemSettings'), 'method' => 'post', 'id' => 'bussiness_edit_form', 'files' => true ]) !!}

POS

@lang('business.add_keyboard_shortcuts'):

@lang('lang_v1.shortcut_help'); @lang('lang_v1.example'): ctrl+shift+b, ctrl+h

@lang('lang_v1.available_key_names_are'):
shift, ctrl, alt, backspace, tab, enter, return, capslock, esc, escape, space, pageup, pagedown, end, home,
left, up, right, down, ins, del, and plus

@lang('business.operations') @lang('business.keyboard_shortcut')
@lang('sale.express_finalize'): {!! Form::text('shortcuts[pos][express_checkout]', !empty($shortcuts["pos"]["express_checkout"]) ? $shortcuts["pos"]["express_checkout"] : null, ['class' => 'form-control']); !!}
@lang('sale.finalize'): {!! Form::text('shortcuts[pos][pay_n_ckeckout]', !empty($shortcuts["pos"]["pay_n_ckeckout"]) ? $shortcuts["pos"]["pay_n_ckeckout"] : null, ['class' => 'form-control']); !!}
@lang('sale.draft'): {!! Form::text('shortcuts[pos][draft]', !empty($shortcuts["pos"]["draft"]) ? $shortcuts["pos"]["draft"] : null, ['class' => 'form-control']); !!}
@lang('messages.cancel'): {!! Form::text('shortcuts[pos][cancel]', !empty($shortcuts["pos"]["cancel"]) ? $shortcuts["pos"]["cancel"] : null, ['class' => 'form-control']); !!}
@lang('lang_v1.recent_product_quantity'): {!! Form::text('shortcuts[pos][recent_product_quantity]', !empty($shortcuts["pos"]["recent_product_quantity"]) ? $shortcuts["pos"]["recent_product_quantity"] : null, ['class' => 'form-control']); !!}
@lang('business.operations') @lang('business.keyboard_shortcut')
@lang('sale.edit_discount'): {!! Form::text('shortcuts[pos][edit_discount]', !empty($shortcuts["pos"]["edit_discount"]) ? $shortcuts["pos"]["edit_discount"] : null, ['class' => 'form-control']); !!}
@lang('sale.edit_order_tax'): {!! Form::text('shortcuts[pos][edit_order_tax]', !empty($shortcuts["pos"]["edit_order_tax"]) ? $shortcuts["pos"]["edit_order_tax"] : null, ['class' => 'form-control']); !!}
@lang('sale.add_payment_row'): {!! Form::text('shortcuts[pos][add_payment_row]', !empty($shortcuts["pos"]["add_payment_row"]) ? $shortcuts["pos"]["add_payment_row"] : null, ['class' => 'form-control']); !!}
@lang('sale.finalize_payment'): {!! Form::text('shortcuts[pos][finalize_payment]', !empty($shortcuts["pos"]["finalize_payment"]) ? $shortcuts["pos"]["finalize_payment"] : null, ['class' => 'form-control']); !!}
@lang('lang_v1.add_new_product'): {!! Form::text('shortcuts[pos][add_new_product]', !empty($shortcuts["pos"]["add_new_product"]) ? $shortcuts["pos"]["add_new_product"] : null, ['class' => 'form-control']); !!}

@lang('lang_v1.pos_settings'):








@if(!empty($modules))

@lang('lang_v1.enable_disable_modules')

@foreach($modules as $k => $v)

@if(!empty($v['tooltip'])) @show_tooltip($v['tooltip']) @endif
@endforeach
@endif
{!! Form::close() !!}
@stop @section('javascript') @endsection