{!! Form::open([ 'url' => action('BusinessLocationController@store'), 'method' => 'post', 'id' => 'business_location_add_form', ]) !!}

@lang('business.add_business_location')

{!! Form::label('name', __('invoice.name') . ':*') !!} {!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => __('invoice.name')]) !!}
{!! Form::label('business_name', __('Business Name') . ':') !!} {!! Form::text('business_name', null, ['class' => 'form-control', 'placeholder' => __('Business Name')]) !!}
{!! Form::label('location_id', __('lang_v1.location_id') . ':') !!} {!! Form::text('location_id', null, ['class' => 'form-control', 'placeholder' => __('lang_v1.location_id')]) !!}
{!! Form::label('landmark', __('business.landmark') . ':') !!} {!! Form::text('landmark', null, ['class' => 'form-control', 'placeholder' => __('business.landmark')]) !!}
{!! Form::label('city', __('business.city') . ':*') !!} {!! Form::text('city', null, ['class' => 'form-control', 'placeholder' => __('business.city'), 'required']) !!}
{!! Form::label('zip_code', __('business.zip_code') . ':*') !!} {!! Form::text('zip_code', null, [ 'class' => 'form-control', 'placeholder' => __('business.zip_code'), 'required', ]) !!}
{!! Form::label('state', __('business.state') . ':*') !!} {!! Form::text('state', null, ['class' => 'form-control', 'placeholder' => __('business.state'), 'required']) !!}
{!! Form::label('country', __('business.country') . ':*') !!} {!! Form::text('country', null, [ 'class' => 'form-control', 'placeholder' => __('business.country'), 'required', ]) !!}
{!! Form::label('mobile', __('business.mobile') . ':') !!} {!! Form::text('mobile', null, ['class' => 'form-control', 'placeholder' => __('business.mobile')]) !!}
{!! Form::label('alternate_number', __('business.alternate_number') . ':') !!} {!! Form::text('alternate_number', null, [ 'class' => 'form-control', 'placeholder' => __('business.alternate_number'), ]) !!}
{!! Form::label('email', __('business.email') . ':') !!} {!! Form::email('email', null, ['class' => 'form-control', 'placeholder' => __('business.email')]) !!}
{!! Form::label('website', __('lang_v1.website') . ':') !!} {!! Form::text('website', null, ['class' => 'form-control', 'placeholder' => __('lang_v1.website')]) !!}
{!! Form::label('invoice_scheme_id', __('invoice.invoice_scheme') . ':*') !!} @show_tooltip(__('tooltip.invoice_scheme')) {!! Form::select('invoice_scheme_id', $invoice_schemes, null, [ 'class' => 'form-control select2', 'required', 'placeholder' => __('messages.please_select'), ]) !!}
{!! Form::label('invoice_layout_id', __('lang_v1.invoice_layout_for_pos') . ':*') !!} @show_tooltip(__('tooltip.invoice_layout')) {!! Form::select('invoice_layout_id', $invoice_layouts, null, [ 'class' => 'form-control select2', 'required', 'placeholder' => __('messages.please_select'), ]) !!}
{!! Form::label('sale_invoice_layout_id', __('lang_v1.invoice_layout_for_sale') . ':*') !!} @show_tooltip(__('lang_v1.invoice_layout_for_sale_tooltip')) {!! Form::select('sale_invoice_layout_id', $invoice_layouts, null, [ 'class' => 'form-control select2', 'required', 'placeholder' => __('messages.please_select'), ]) !!}
{!! Form::label('selling_price_group_id', __('lang_v1.default_selling_price_group') . ':') !!} @show_tooltip(__('lang_v1.location_price_group_help')) {!! Form::select('selling_price_group_id', $price_groups, null, [ 'class' => 'form-control select2', 'placeholder' => __('messages.please_select'), ]) !!}
@php $custom_labels = json_decode(session('business.custom_labels'), true); $location_custom_field1 = !empty($custom_labels['location']['custom_field_1']) ? $custom_labels['location']['custom_field_1'] : __('lang_v1.location_custom_field1'); $location_custom_field2 = !empty($custom_labels['location']['custom_field_2']) ? $custom_labels['location']['custom_field_2'] : __('lang_v1.location_custom_field2'); $location_custom_field3 = !empty($custom_labels['location']['custom_field_3']) ? $custom_labels['location']['custom_field_3'] : __('lang_v1.location_custom_field3'); $location_custom_field4 = !empty($custom_labels['location']['custom_field_4']) ? $custom_labels['location']['custom_field_4'] : __('lang_v1.location_custom_field4'); @endphp
{!! Form::label('custom_field1', $location_custom_field1 . ':') !!} {!! Form::text('custom_field1', null, ['class' => 'form-control', 'placeholder' => $location_custom_field1]) !!}
{!! Form::label('custom_field2', $location_custom_field2 . ':') !!} {!! Form::text('custom_field2', null, ['class' => 'form-control', 'placeholder' => $location_custom_field2]) !!}
{!! Form::label('custom_field3', $location_custom_field3 . ':') !!} {!! Form::text('custom_field3', null, ['class' => 'form-control', 'placeholder' => $location_custom_field3]) !!}
{!! Form::label('custom_field4', $location_custom_field4 . ':') !!} {!! Form::text('custom_field4', null, ['class' => 'form-control', 'placeholder' => $location_custom_field4]) !!}

@show_tooltip(__('lang_v1.allow_overselling_help'))

{!! Form::label('featured_products', __('lang_v1.pos_screen_featured_products') . ':') !!} @show_tooltip(__('lang_v1.featured_products_help')) {!! Form::select('featured_products[]', [], null, [ 'class' => 'form-control', 'id' => 'featured_products', 'multiple', ]) !!}

@lang('lang_v1.payment_options'): @show_tooltip(__('lang_v1.payment_option_help'))
@foreach ($payment_types as $key => $value) @endforeach
@lang('lang_v1.payment_method') @lang('lang_v1.enable') @lang('lang_v1.default_accounts') @show_tooltip(__('lang_v1.default_account_help'))
{{ $value }} {!! Form::checkbox('default_payment_accounts[' . $key . '][is_enabled]', 1, true) !!} {!! Form::select('default_payment_accounts[' . $key . '][account]', $accounts, null, [ 'class' => 'form-control input-sm', ]) !!}

Pos Return Payment

{!! Form::close() !!}