@lang('general.text_installation')
@include('flash::message')
@if (!$errors->isEmpty())
{{ __('general.error_form') }}
@endif
@lang('base/installation_step_1.document_title')
@lang('base/installation_step_1.text_help_1')
{!! Form::model($company,['route' => ['installation/step-1',$company->id],'method' => 'PUT','class' => 'form-horizontal','role' => 'form','id' => 'form','files' => true]) !!}
{!! Form::hidden('image', old('image')) !!}
{!! Form::close() !!}
{!! html_entity_decode(Form::label('name', __('base/company.entry_name') . ' *', ['class' => 'control-label'])) !!}
{!! Form::text('name', old('name'), ['class' => 'form-control', 'placeholder' => __('base/company.entry_name'),'required','autofocus']) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! html_entity_decode(Form::label('taxid', __('base/company.entry_taxid') . ' *', ['class' => 'control-label'])) !!}
{!! Form::text('taxid', old('taxid'), ['class' => 'form-control text-uppercase', 'placeholder' => __('base/company.entry_taxid'),'required']) !!}
@if ($errors->has('taxid'))
{{ $errors->first('taxid') }}
@endif
{!! html_entity_decode(Form::label('tax_regimen_id', __('base/company.entry_tax_regimen_id') . ' *', ['class' => 'control-label'])) !!}
{!! Form::select('tax_regimen_id', $tax_regimens,old('tax_regimen_id'), ['class' => 'form-control', 'placeholder' => __('general.text_select'),'required']) !!}
@if ($errors->has('tax_regimen_id'))
{{ $errors->first('tax_regimen_id') }}
@endif
{!! html_entity_decode(Form::label('email', __('base/company.entry_email') . '', ['class' => 'control-label'])) !!}
{!! Form::email('email', old('email'), ['class' => 'form-control', 'placeholder' => __('base/company.entry_email')]) !!}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{!! html_entity_decode(Form::label('phone', __('base/company.entry_phone') . '', ['class' => 'control-label'])) !!}
{!! Form::text('phone', old('phone'), ['class' => 'form-control', 'placeholder' => __('base/company.entry_phone')]) !!}
* @lang('base/installation_step_1.text_help_2')
{!! html_entity_decode(Form::label('address_1', __('base/company.entry_address_1') . '', ['class' => 'control-label'])) !!}
{!! Form::text('address_1', old('address_1'), ['class' => 'form-control', 'placeholder' => __('base/company.entry_address_1')]) !!}
{!! html_entity_decode(Form::label('address_2', __('base/company.entry_address_2') . '', ['class' => 'control-label'])) !!}
{!! Form::text('address_2', old('address_2'), ['class' => 'form-control', 'placeholder' => __('base/company.entry_address_2')]) !!}
{!! html_entity_decode(Form::label('address_3', __('base/company.entry_address_3') . '', ['class' => 'control-label'])) !!}
{!! Form::text('address_3', old('address_3'), ['class' => 'form-control', 'placeholder' => __('base/company.entry_address_3')]) !!}
{!! html_entity_decode(Form::label('address_4', __('base/company.entry_address_4') . '', ['class' => 'control-label'])) !!}
{!! Form::text('address_4', old('address_4'), ['class' => 'form-control', 'placeholder' => __('base/company.entry_address_4')]) !!}
{!! html_entity_decode(Form::label('country_id', __('base/company.entry_country_id') . ' *', ['class' => 'control-label'])) !!}
{!! Form::select('country_id', $countries,old('country_id'), ['class' => 'form-control my-select2', 'placeholder' => __('general.text_select'),'required']) !!}
@if ($errors->has('country_id'))
{{ $errors->first('country_id') }}
@endif
{!! html_entity_decode(Form::label('state_id', __('base/company.entry_state_id') . '', ['class' => 'control-label'])) !!}
{!! Form::select('state_id', [],old('state_id'), ['class' => 'form-control my-select2', 'placeholder' => __('general.text_select')]) !!}
{!! html_entity_decode(Form::label('city_id', __('base/company.entry_city_id') . '', ['class' => 'control-label'])) !!}
{!! Form::select('city_id', [],old('city_id'), ['class' => 'form-control my-select2', 'placeholder' => __('general.text_select')]) !!}
{!! html_entity_decode(Form::label('postcode', __('base/company.entry_postcode') . ' *', ['class' => 'control-label'])) !!}
{!! Form::text('postcode', old('postcode'), ['class' => 'form-control', 'placeholder' => __('base/company.entry_postcode'),'required']) !!}
@if ($errors->has('postcode'))
{{ $errors->first('postcode') }}
@endif