{!! Form::label('country', 'Country') !!} {!! Form::select('country[]', $bCountries, json_decode($business->country, true), ['class' => 'form-control select_select2', 'multiple', 'style' => 'width:100%;']) !!}
{!! Form::label('language', 'Language') !!} {!! Form::select('language[]', $bLanguages, json_decode($business->language, true), ['class' => 'form-control select_select2', 'multiple', 'style' => 'width:100%;']) !!}
{!! Form::label('currency', 'Currency') !!} {!! Form::select('currency[]', $bCurrencies, json_decode($business->currency, true), ['class' => 'form-control select_select2', 'multiple', 'style' => 'width:100%;']) !!}
{!! Form::label('p_label', 'Personal Tax Label') !!} {!! Form::text('p_label', $business->p_label, ['class' => 'form-control', 'placeholder' => 'Personal Tax Label']) !!}
{!! Form::checkbox('p_required' , 1,$business->p_required ) !!} {!! Form::label('p_required','Personal Required') !!}
{!! Form::label('p_validation', 'Personal Validation') !!} {!! Form::text('p_validation', $business->p_validation, ['class' => 'form-control', 'placeholder' => 'Personal Validation']) !!}
{!! Form::label('b_label', 'Business Tax Label') !!} {!! Form::text('b_label', $business->b_label, ['class' => 'form-control', 'placeholder' => 'Business Tax Label']) !!}
{!! Form::checkbox('b_required' , 1,$business->b_required ) !!} {!! Form::label('b_required','Business Required') !!}
{!! Form::label('b_validation', 'Business Validation') !!} {!! Form::text('b_validation', $business->b_validation, ['class' => 'form-control', 'placeholder' => 'Business Validation']) !!}
{!! Form::checkbox('show_field' , 1,($business->id > 0) ? $business->show_field : 1 ) !!} {!! Form::label('show_field','Show Field ?') !!}
{!! Form::checkbox('is_exempted' , 1,$business->is_exempted) !!} {!! Form::label('is_exempted','Exempted ?') !!}
@if($business->id > 0) @endif