{!! Form::open(['url' => action('ContactController@update', [$contact->id]), 'method' => 'PUT', 'id' => 'contact_edit_form']) !!}

@lang('contact.edit_contact')

{!! Form::label('type', __('contact.contact_type') . ':*' ) !!}
{!! Form::select('type', $types, $contact->type, ['class' => 'form-control', 'id' => 'contact_type','placeholder' => __('messages.please_select'), 'required']); !!}
{!! Form::label('supplier_business_name', __('business.business_name') . ':*') !!}
{!! Form::text('supplier_business_name', $contact->supplier_business_name, ['class' => 'form-control', 'required', 'placeholder' => __('business.business_name')]); !!}
{!! Form::label('name', __('contact.name') . ':*') !!}
{!! Form::text('name', $contact->name, ['class' => 'form-control','placeholder' => __('contact.name'), 'required']); !!}
{!! Form::label('contact_id', __('lang_v1.contact_id') . ':') !!}
{!! Form::text('contact_id', $contact->contact_id, ['class' => 'form-control','placeholder' => __('lang_v1.contact_id')]); !!}
{!! Form::label('email', __('business.email') . ':') !!}
{!! Form::email('email', $contact->email, ['class' => 'form-control','placeholder' => __('business.email')]); !!}
{!! Form::label('tax_number', __('contact.tax_no') . ':') !!}
{!! Form::text('tax_number', $contact->tax_number, ['class' => 'form-control', 'placeholder' => __('contact.tax_no')]); !!}
{!! Form::label('pay_term_number', __('contact.pay_term') . '*:') !!} @show_tooltip(__('tooltip.pay_term'))
{!! Form::number('pay_term_number', $contact->pay_term_number, ['class' => 'form-control', 'required', 'placeholder' => __('contact.pay_term') ]); !!}
{!! Form::label('pay_term_type', __('contact.pay_term_period') . '*:') !!}
{!! Form::select('pay_term_type', ['months' => __('lang_v1.months'), 'days' => __('lang_v1.days')], $contact->pay_term_type, ['class' => 'form-control','placeholder' => __('messages.please_select'), 'required']); !!}
{!! Form::label('customer_group_id', __('lang_v1.customer_group') . ':') !!}
{!! Form::select('customer_group_id', $customer_groups, $contact->customer_group_id, ['class' => 'form-control']); !!}

{!! Form::label('mobile', __('contact.mobile') . ':*') !!}
{!! Form::text('mobile', $contact->mobile, ['class' => 'form-control', 'required', 'placeholder' => __('contact.mobile')]); !!}
{!! Form::label('landline', __('contact.landline') . ':') !!}
{!! Form::text('landline', $contact->landline, ['class' => 'form-control', 'placeholder' => __('contact.landline')]); !!}
{!! Form::label('alternate_number', __('contact.alternate_contact_number') . ':') !!}
{!! Form::text('alternate_number', $contact->alternate_number, ['class' => 'form-control', 'placeholder' => __('contact.alternate_contact_number')]); !!}
{!! Form::label('city', __('business.city') . ':') !!}
{!! Form::text('city', $contact->city, ['class' => 'form-control', 'placeholder' => __('business.city')]); !!}
{!! Form::label('state', __('business.state') . ':') !!}
{!! Form::text('state', $contact->state, ['class' => 'form-control', 'placeholder' => __('business.state')]); !!}
{!! Form::label('country', __('business.country') . ':') !!}
{!! Form::text('country', $contact->country, ['class' => 'form-control', 'placeholder' => __('business.country')]); !!}
{!! Form::label('landmark', __('business.landmark') . ':') !!}
{!! Form::text('landmark', $contact->landmark, ['class' => 'form-control', 'placeholder' => __('business.landmark')]); !!}

{!! Form::label('custom_field1', __('lang_v1.custom_field', ['number' => 1]) . ':') !!} {!! Form::text('custom_field1', $contact->custom_field1, ['class' => 'form-control', 'placeholder' => __('lang_v1.custom_field', ['number' => 1])]); !!}
{!! Form::label('custom_field2', __('lang_v1.custom_field', ['number' => 2]) . ':') !!} {!! Form::text('custom_field2', $contact->custom_field2, ['class' => 'form-control', 'placeholder' => __('lang_v1.custom_field', ['number' => 2])]); !!}
{!! Form::label('custom_field3', __('lang_v1.custom_field', ['number' => 3]) . ':') !!} {!! Form::text('custom_field3', $contact->custom_field3, ['class' => 'form-control', 'placeholder' => __('lang_v1.custom_field', ['number' => 3])]); !!}
{!! Form::label('custom_field4', __('lang_v1.custom_field', ['number' => 4]) . ':') !!} {!! Form::text('custom_field4', $contact->custom_field4, ['class' => 'form-control', 'placeholder' => __('lang_v1.custom_field', ['number' => 4])]); !!}
{!! Form::close() !!}