{!! Form::open([ 'url' => action('BusinessLocationController@update', [$location->id]), 'method' => 'PUT', 'id' => 'business_location_add_form', ]) !!} {!! Form::hidden('hidden_id', $location->id, ['id' => 'hidden_id']) !!}

@lang('business.edit_business_location')

{!! Form::label('name', __('invoice.name') . ':*') !!} {!! Form::text('name', $location->name, [ 'class' => 'form-control', 'required', 'placeholder' => __('invoice.name'), ]) !!}
{!! Form::label('business_name', __('Business Name') . ':') !!} {!! Form::text('business_name', $location->business_name, [ 'class' => 'form-control', 'placeholder' => __('invoice.name'), ]) !!}
{!! Form::label('location_id', __('lang_v1.location_id') . ':') !!} {!! Form::text('location_id', $location->location_id, [ 'class' => 'form-control', 'placeholder' => __('lang_v1.location_id'), ]) !!}
{!! Form::label('landmark', __('business.landmark') . ':') !!} {!! Form::text('landmark', $location->landmark, [ 'class' => 'form-control', 'placeholder' => __('business.landmark'), ]) !!}
{!! Form::label('city', __('business.city') . ':*') !!} {!! Form::text('city', $location->city, [ 'class' => 'form-control', 'placeholder' => __('business.city'), 'required', ]) !!}
{!! Form::label('zip_code', __('business.zip_code') . ':*') !!} {!! Form::text('zip_code', $location->zip_code, [ 'class' => 'form-control', 'placeholder' => __('business.zip_code'), 'required', ]) !!}
{!! Form::label('state', __('business.state') . ':*') !!} {!! Form::text('state', $location->state, [ 'class' => 'form-control', 'placeholder' => __('business.state'), 'required', ]) !!}
{!! Form::label('country', __('business.country') . ':*') !!} {!! Form::text('country', $location->country, [ 'class' => 'form-control', 'placeholder' => __('business.country'), 'required', ]) !!}
{!! Form::label('mobile', __('business.mobile') . ':') !!} {!! Form::text('mobile', $location->mobile, ['class' => 'form-control', 'placeholder' => __('business.mobile')]) !!}
{!! Form::label('alternate_number', __('business.alternate_number') . ':') !!} {!! Form::text('alternate_number', $location->alternate_number, [ 'class' => 'form-control', 'placeholder' => __('business.alternate_number'), ]) !!}
{!! Form::label('email', __('business.email') . ':') !!} {!! Form::email('email', $location->email, ['class' => 'form-control', 'placeholder' => __('business.email')]) !!}
{!! Form::label('website', __('lang_v1.website') . ':') !!} {!! Form::text('website', $location->website, [ '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, $location->invoice_scheme_id, [ '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, $location->invoice_layout_id, [ 'class' => 'form-control select2', 'required', 'placeholder' => __('messages.please_select'), ]) !!}
{!! Form::label('sale_invoice_layout_id', __('lang_v1.invoice_layout_for_sale') . ':*') !!} @show_tooltip(__('tooltip.invoice_layout')) {!! Form::select('sale_invoice_layout_id', $invoice_layouts, $location->sale_invoice_layout_id, [ '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, $location->selling_price_group_id, [ 'class' => 'form-control select2', 'placeholder' => __('messages.please_select'), ]) !!}

@show_tooltip(__('lang_v1.allow_overselling_help'))
@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', $location->custom_field1, [ 'class' => 'form-control', 'placeholder' => $location_custom_field1, ]) !!}
{!! Form::label('custom_field2', $location_custom_field2 . ':') !!} {!! Form::text('custom_field2', $location->custom_field2, [ 'class' => 'form-control', 'placeholder' => $location_custom_field2, ]) !!}
{!! Form::label('custom_field3', $location_custom_field3 . ':') !!} {!! Form::text('custom_field3', $location->custom_field3, [ 'class' => 'form-control', 'placeholder' => $location_custom_field3, ]) !!}
{!! Form::label('custom_field4', $location_custom_field4 . ':') !!} {!! Form::text('custom_field4', $location->custom_field4, [ 'class' => 'form-control', 'placeholder' => $location_custom_field4, ]) !!}

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

@lang('lang_v1.payment_options'): @show_tooltip(__('lang_v1.payment_option_help'))
@php $default_payment_accounts = !empty($location->default_payment_accounts) ? json_decode($location->default_payment_accounts, true) : []; @endphp @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, !empty($default_payment_accounts[$key]['is_enabled']), ) !!} {!! Form::select( 'default_payment_accounts[' . $key . '][account]', $accounts, !empty($default_payment_accounts[$key]['account']) ? $default_payment_accounts[$key]['account'] : null, ['class' => 'form-control input-sm'], ) !!} {{--
--}}

Pos Return Payment

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