@include('layout.header')

COMPANY DETAILS

Please fill company details.

{!! Form::open(['route' => ['client.companyDetailUpdate',$companyProfile->id], 'onsubmit'=>'BtnSubmit.disabled = true', 'class'=>'row g-3 needs-validation', 'method' => 'post','autocomplete'=>'off','files'=>true]) !!} @method('PUT')
{{$errors->first('company_name')}}
{!! Form::select('company_type', [''=>'Select','proprietorship'=>'Proprietorship','partnership'=>'Partnership','private limited company'=>'Private Limited Company','limited company'=>'Limited Company','llp'=>'LLP','huf'=>"HUF"], $companyProfile->company_type, ['class'=>'form-control','id'=>'company_type','required']) !!}
{{$errors->first('company_type')}}
{{$errors->first('company_logo')}}
@if($companyProfile->company_logo != asset('storage')) View Image @endif
@if($companyProfile->company_signature != asset('storage')) View Image @endif
{{$errors->first('company_signature')}}
{{$errors->first('address')}}
{{$errors->first('country')}}
{!! Form::select('state_id', [''=>'Select']+$state, $companyProfile->state_id, ['class'=>'form-control select2','id'=>'state_id','required']) !!}
{{$errors->first('state_id')}}
{{$errors->first('district')}}
{{$errors->first('pan_no')}}
{{$errors->first('gst_no')}}
{{$errors->first('transporter_id')}}
{{$errors->first('website')}}
{{$errors->first('mobile_no')}}
{{$errors->first('email')}}
{{$errors->first('tan_no')}}
{{$errors->first('year_from')}}
{{$errors->first('remark')}}
{!! Form::close() !!}
@stack('footer_script') @include('layout.notification')