@php
$form_id = 'contact_add_form';
if(isset($quick_add)){
$form_id = 'quick_add_contact';
}
if(isset($store_action)) {
$url = $store_action;
$type = 'lead';
$customer_groups = [];
} else {
$url = action([\App\Http\Controllers\ContactController::class, 'store']);
$type = isset($selected_type) ? $selected_type : '';
$sources = [];
$life_stages = [];
}
@endphp
{!! Form::open(['url' => $url, 'method' => 'post', 'id' => $form_id ,'class'=>'container']) !!}
{!! Form::text('contact_id', null, ['class' => 'form-control','placeholder' => __('lang_v1.contact_id')]); !!}
{!! Form::label('contact_id', __('lang_v1.contact_id') . ':') !!}
{!! Form::select('customer_group_id', $customer_groups, '', ['class' => 'form-control']); !!}
{!! Form::label('customer_group_id', __('lang_v1.customer_group') . ':') !!}
{!! Form::text('supplier_business_name', null, ['class' => 'form-control', 'placeholder' => __('business.business_name')]); !!}
{!! Form::label('supplier_business_name', __('business.business_name') . ':') !!}
{!! Form::label('prefix', __( 'business.prefix' ) . ':') !!}
{!! Form::text('prefix', null, ['class' => 'form-control', 'placeholder' => __( 'business.prefix_placeholder' ) ]); !!}
{!! Form::text('first_name', null, ['class' => 'form-control', 'required', 'placeholder' => __( 'new.customer_name' ) ]); !!}
{!! Form::label('first_name', __( 'new.customer_name' ) . ':*') !!}
{!! Form::label('middle_name', __( 'lang_v1.middle_name' ) . ':') !!}
{!! Form::text('middle_name', null, ['class' => 'form-control', 'placeholder' => __( 'lang_v1.middle_name' ) ]); !!}
{!! Form::label('last_name', __( 'business.last_name' ) . ':') !!}
{!! Form::text('last_name', null, ['class' => 'form-control', 'placeholder' => __( 'business.last_name' ) ]); !!}
{!! Form::text('mobile', null, ['class' => 'form-control', 'required', 'placeholder' => __('contact.mobile')]); !!}
{!! Form::label('mobile', __('contact.mobile') . ':*') !!}
{!! Form::text('alternate_number', null, ['class' => 'form-control', 'placeholder' => __('contact.alternate_contact_number')]); !!}
{!! Form::label('alternate_number', __('contact.alternate_contact_number') . ':') !!}
{!! Form::text('landline', null, ['class' => 'form-control', 'placeholder' => __('contact.landline')]); !!}
{!! Form::label('landline', __('contact.landline') . ':') !!}
{!! Form::email('email', null, ['class' => 'form-control','placeholder' => __('business.email')]); !!}
{!! Form::label('email', __('business.email') . ':') !!}
{!! Form::text('dob', null, ['class' => 'form-control dob-date-picker','placeholder' => __('lang_v1.dob'), 'readonly']); !!}
{!! Form::label('dob', __('lang_v1.dob') . ':') !!}
{!! Form::label('crm_source', __('lang_v1.source') . ':' ) !!}
{!! Form::select('crm_source', $sources, null , ['class' => 'form-control', 'id' => 'crm_source','placeholder' => __('messages.please_select')]); !!}
{!! Form::select('crm_life_stage', $life_stages, null , ['class' => 'form-control', 'id' => 'crm_life_stage','placeholder' => __('messages.please_select')]); !!}
{!! Form::label('crm_life_stage', __('lang_v1.life_stage') . ':' ) !!}
{!! Form::select('user_id[]', $users ?? [], null , ['class' => 'form-control select2', 'id' => 'user_id', 'multiple', 'style' => 'width: 100%;']); !!}
{!! Form::label('user_id', __('lang_v1.assigned_to') . ':*' ) !!}
@if(config('constants.enable_contact_assign') && $type !== 'lead')
{!! Form::select('assigned_to_users[]', $users ?? [], null , ['class' => 'form-control select2', 'id' => 'assigned_to_users', 'multiple', 'style' => 'width: 100%;']); !!}
{!! Form::label('assigned_to_users', __('lang_v1.assigned_to') . ':' ) !!}
@endif
{!! Form::hidden('position', null, ['id' => 'position']); !!}
{!! Form::text('tax_number', null, ['class' => 'form-control', 'placeholder' => __('contact.tax_no')]); !!}
{!! Form::label('tax_number', __('contact.tax_no') . ':') !!}
{!! Form::text('opening_balance', 0, ['class' => 'form-control input_number' , 'placeholder' => __('lang_v1.opening_balance')]); !!}
{!! Form::label('opening_balance', __('lang_v1.opening_balance') . ':') !!}
{!! Form::number('pay_term_number', null, ['class' => 'form-control ', 'placeholder' => __('contact.pay_term')]); !!}
{!! Form::label('pay_term_number', __('contact.pay_term') . ':') !!} @show_tooltip(__('tooltip.pay_term'))
{!! Form::select('pay_term_type', [ 'days' => __('lang_v1.days')], '', ['class' => 'form-control width-60 pull-left hide']); !!}
@php
$common_settings = session()->get('business.common_settings');
$default_credit_limit = !empty($common_settings['default_credit_limit']) ? $common_settings['default_credit_limit'] : null;
@endphp
{!! Form::text('credit_limit', $default_credit_limit ?? null, ['class' => 'form-control input_number','placeholder'=> __('lang_v1.credit_limit') ]); !!}
{!! Form::label('credit_limit', __('lang_v1.credit_limit') . ':') !!}
{!! Form::label('address_line_1', __('lang_v1.address_line_1') . ':') !!}
{!! Form::text('address_line_1', null, ['class' => 'form-control', 'placeholder' => __('lang_v1.address_line_1'), 'rows' => 3]); !!}
{!! Form::label('address_line_2', __('lang_v1.address_line_2') . ':') !!}
{!! Form::text('address_line_2', null, ['class' => 'form-control', 'placeholder' => __('lang_v1.address_line_2'), 'rows' => 3]); !!}
{!! Form::text('city', null, ['class' => 'form-control', 'placeholder' => __('business.city')]); !!}
{!! Form::label('city', __('business.city') . ':') !!}
{!! Form::text('state', null, ['class' => 'form-control', 'placeholder' => __('business.state')]); !!}
{!! Form::label('state', __('business.state') . ':') !!}
{!! Form::text('country', null, ['class' => 'form-control', 'placeholder' => __('business.country')]); !!}
{!! Form::label('country', __('business.country') . ':') !!}
{!! Form::text('zip_code', null, ['class' => 'form-control',
'placeholder' => __('business.zip_code_placeholder')]); !!}
{!! Form::label('zip_code', __('business.zip_code') . ':') !!}
@php
$custom_labels = json_decode(session('business.custom_labels'), true);
$contact_custom_field1 = !empty($custom_labels['contact']['custom_field_1']) ? $custom_labels['contact']['custom_field_1'] : __('lang_v1.contact_custom_field1');
$contact_custom_field2 = !empty($custom_labels['contact']['custom_field_2']) ? $custom_labels['contact']['custom_field_2'] : __('lang_v1.contact_custom_field2');
$contact_custom_field3 = !empty($custom_labels['contact']['custom_field_3']) ? $custom_labels['contact']['custom_field_3'] : __('lang_v1.contact_custom_field3');
$contact_custom_field4 = !empty($custom_labels['contact']['custom_field_4']) ? $custom_labels['contact']['custom_field_4'] : __('lang_v1.contact_custom_field4');
$contact_custom_field5 = !empty($custom_labels['contact']['custom_field_5']) ? $custom_labels['contact']['custom_field_5'] : __('lang_v1.custom_field', ['number' => 5]);
$contact_custom_field6 = !empty($custom_labels['contact']['custom_field_6']) ? $custom_labels['contact']['custom_field_6'] : __('lang_v1.custom_field', ['number' => 6]);
$contact_custom_field7 = !empty($custom_labels['contact']['custom_field_7']) ? $custom_labels['contact']['custom_field_7'] : __('lang_v1.custom_field', ['number' => 7]);
$contact_custom_field8 = !empty($custom_labels['contact']['custom_field_8']) ? $custom_labels['contact']['custom_field_8'] : __('lang_v1.custom_field', ['number' => 8]);
$contact_custom_field9 = !empty($custom_labels['contact']['custom_field_9']) ? $custom_labels['contact']['custom_field_9'] : __('lang_v1.custom_field', ['number' => 9]);
$contact_custom_field10 = !empty($custom_labels['contact']['custom_field_10']) ? $custom_labels['contact']['custom_field_10'] : __('lang_v1.custom_field', ['number' => 10]);
@endphp
{!! Form::text('custom_field1', null, ['class' => 'form-control', 'placeholder' => $contact_custom_field1]) !!}
{!! Form::label('custom_field1', $contact_custom_field1 . ':') !!}
{!! Form::text('custom_field2', null, ['class' => 'form-control', 'placeholder' => $contact_custom_field2]) !!}
{!! Form::label('custom_field2', $contact_custom_field2 . ':') !!}
{!! Form::text('custom_field3', null, ['class' => 'form-control', 'placeholder' => $contact_custom_field3]) !!}
{!! Form::label('custom_field3', $contact_custom_field3 . ':') !!}
{!! Form::text('custom_field4', null, ['class' => 'form-control', 'placeholder' => $contact_custom_field4]) !!}
{!! Form::label('custom_field4', $contact_custom_field4 . ':') !!}
{!! Form::text('custom_field5', null, ['class' => 'form-control', 'placeholder' => $contact_custom_field5]) !!}
{!! Form::label('custom_field5', $contact_custom_field5 . ':') !!}
{!! Form::text('custom_field6', null, ['class' => 'form-control', 'placeholder' => $contact_custom_field6]) !!}
{!! Form::label('custom_field6', $contact_custom_field6 . ':') !!}
{!! Form::text('custom_field7', null, ['class' => 'form-control', 'placeholder' => $contact_custom_field7]) !!}
{!! Form::label('custom_field7', $contact_custom_field7 . ':') !!}
{!! Form::text('custom_field8', null, ['class' => 'form-control', 'placeholder' => $contact_custom_field8]) !!}
{!! Form::label('custom_field8', $contact_custom_field8 . ':') !!}
{!! Form::text('custom_field9', null, ['class' => 'form-control', 'placeholder' => $contact_custom_field9]) !!}
{!! Form::label('custom_field9', $contact_custom_field9 . ':') !!}
{!! Form::text('custom_field10', null, ['class' => 'form-control', 'placeholder' => $contact_custom_field10]) !!}
{!! Form::label('custom_field10', $contact_custom_field10 . ':') !!}
{!! Form::text('shipping_address', null, ['class' => 'form-control',
'placeholder' => __('lang_v1.shipping_address'), 'id' => 'shipping_address']); !!}
@php
$shipping_custom_label_1 = !empty($custom_labels['shipping']['custom_field_1']) ? $custom_labels['shipping']['custom_field_1'] : '';
$shipping_custom_label_2 = !empty($custom_labels['shipping']['custom_field_2']) ? $custom_labels['shipping']['custom_field_2'] : '';
$shipping_custom_label_3 = !empty($custom_labels['shipping']['custom_field_3']) ? $custom_labels['shipping']['custom_field_3'] : '';
$shipping_custom_label_4 = !empty($custom_labels['shipping']['custom_field_4']) ? $custom_labels['shipping']['custom_field_4'] : '';
$shipping_custom_label_5 = !empty($custom_labels['shipping']['custom_field_5']) ? $custom_labels['shipping']['custom_field_5'] : '';
@endphp
@if(!empty($custom_labels['shipping']['is_custom_field_1_contact_default']) && !empty($shipping_custom_label_1))
@php
$label_1 = $shipping_custom_label_1 . ':';
@endphp
{!! Form::label('shipping_custom_field_1', $label_1 ) !!}
{!! Form::text('shipping_custom_field_details[shipping_custom_field_1]', null, ['class' => 'form-control','placeholder' => $shipping_custom_label_1]); !!}
@endif
@if(!empty($custom_labels['shipping']['is_custom_field_2_contact_default']) && !empty($shipping_custom_label_2))
@php
$label_2 = $shipping_custom_label_2 . ':';
@endphp
{!! Form::label('shipping_custom_field_2', $label_2 ) !!}
{!! Form::text('shipping_custom_field_details[shipping_custom_field_2]', null, ['class' => 'form-control','placeholder' => $shipping_custom_label_2]); !!}
@endif
@if(!empty($custom_labels['shipping']['is_custom_field_3_contact_default']) && !empty($shipping_custom_label_3))
@php
$label_3 = $shipping_custom_label_3 . ':';
@endphp
{!! Form::label('shipping_custom_field_3', $label_3 ) !!}
{!! Form::text('shipping_custom_field_details[shipping_custom_field_3]', null, ['class' => 'form-control','placeholder' => $shipping_custom_label_3]); !!}
@endif
@if(!empty($custom_labels['shipping']['is_custom_field_4_contact_default']) && !empty($shipping_custom_label_4))
@php
$label_4 = $shipping_custom_label_4 . ':';
@endphp
{!! Form::label('shipping_custom_field_4', $label_4 ) !!}
{!! Form::text('shipping_custom_field_details[shipping_custom_field_4]', null, ['class' => 'form-control','placeholder' => $shipping_custom_label_4]); !!}
@endif
@if(!empty($custom_labels['shipping']['is_custom_field_5_contact_default']) && !empty($shipping_custom_label_5))
@php
$label_5 = $shipping_custom_label_5 . ':';
@endphp
{!! Form::label('shipping_custom_field_5', $label_5 ) !!}
{!! Form::text('shipping_custom_field_details[shipping_custom_field_5]', null, ['class' => 'form-control','placeholder' => $shipping_custom_label_5]); !!}
@endif
@if(!empty($common_settings['is_enabled_export']))
@php
$i = 1;
@endphp
@for($i; $i <= 6 ; $i++)
{!! Form::label('export_custom_field_'.$i, __('lang_v1.export_custom_field'.$i).':' ) !!}
{!! Form::text('export_custom_field_'.$i, null, ['class' => 'form-control','placeholder' => __('lang_v1.export_custom_field'.$i)]); !!}
@endfor
@endif