@include('flash::message') @if (!$errors->isEmpty()) @endif

@lang('base/installation_step_2.document_title')

@lang('base/installation_step_2.text_help_1')
@lang('base/installation_step_2.text_help_2')
@lang('base/installation_step_2.text_help_3')

{!! Form::model($company,['route' => ['installation/step-2',$company->id],'method' => 'PUT','class' => 'form-horizontal','role' => 'form','id' => 'form','files' => true]) !!}

{!! html_entity_decode(Form::label('file_file_cer', __('base/company.entry_file_cer') . '', ['class' => 'control-label'])) !!}

@lang('general.button_select')
{!! Form::text('input_file_cer', old('',$company->file_cer), ['class' => 'form-control hidden','readonly', 'placeholder' => __('general.text_select'),'readonly','autocomplete'=>'off']) !!} {!! Form::file('file_file_cer', ['class'=> 'hidden', 'accept' => '.cer']) !!} @if ($errors->has('file_file_cer_ext')) {{ $errors->first('file_file_cer_ext') }} @endif

{!! html_entity_decode(Form::label('file_file_key', __('base/company.entry_file_key') . '', ['class' => 'control-label'])) !!}

@lang('general.button_select')
{!! Form::text('input_file_key', old('',$company->file_key), ['class' => 'form-control hidden','readonly', 'placeholder' => __('general.text_select'),'readonly','autocomplete'=>'off']) !!} {!! Form::file('file_file_key', ['class'=> 'hidden', 'accept' => '.key']) !!} @if ($errors->has('file_file_key_ext')) {{ $errors->first('file_file_key_ext') }} @endif
{!! html_entity_decode(Form::label('password_key', __('base/company.entry_password_key') . ' *', ['class' => 'control-label'])) !!} {!! Form::password('password_key', ['class' => 'form-control text-center', 'placeholder' => __('base/company.entry_password_key'),'required']) !!} @if ($errors->has('password_key')) {{ $errors->first('password_key') }} @endif
{!! Form::close() !!}