{!! icon('organization') !!}
{{ Form::text('company_name', null, [ 'class' => 'form-control form-control-lg' . ($errors->has('company_name') ? ' is-invalid' : ''), 'placeholder' => __('Company name') ]) }} @if ($errors->has('company_name'))
{{ $errors->first('company_name') }}
@endif
{!! icon('tax') !!}
{{ Form::text('tax_nr', null, [ 'class' => 'form-control' . ($errors->has('tax_nr') ? ' is-invalid' : ''), 'placeholder' => __('Tax no.') ]) }} @if ($errors->has('tax_nr'))
{{ $errors->first('tax_nr') }}
@endif
{{ Form::text('registration_nr', null, [ 'class' => 'form-control' . ($errors->has('registration_nr') ? ' is-invalid' : ''), 'placeholder' => __('Reg. no.') ]) }} @if ($errors->has('registration_nr'))
{{ $errors->first('registration_nr') }}
@endif