@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')
Company Name
*
{{$errors->first('company_name')}}
Company Type
*
{!! 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')}}
Logo
{{$errors->first('company_logo')}}
@if($companyProfile->company_logo != asset('storage'))
View Image
@endif
Upload Signature
@if($companyProfile->company_signature != asset('storage'))
View Image
@endif
{{$errors->first('company_signature')}}
Address
*
{{$companyProfile->address}}
{{$errors->first('address')}}
Country
*
{{$errors->first('country')}}
State
*
{!! Form::select('state_id', [''=>'Select']+$state, $companyProfile->state_id, ['class'=>'form-control select2','id'=>'state_id','required']) !!}
{{$errors->first('state_id')}}
District
*
{{$errors->first('district')}}
Pan No
{{$errors->first('pan_no')}}
GST No
{{$errors->first('gst_no')}}
Transporter ID
{{$errors->first('transporter_id')}}
Website
{{$errors->first('website')}}
Mobile No.
*
{{$errors->first('mobile_no')}}
Email
*
{{$errors->first('email')}}
Tan No.
{{$errors->first('tan_no')}}
CIN No
*
{{-- * is taken because we are maiking this input required via jquery.--}}
{{$errors->first('cin_no')}}
Financial Year Start
*
{{$errors->first('year_from')}}
Remark
{{$errors->first('remark')}}
Submit
{!! Form::close() !!}
@stack('footer_script') @include('layout.notification')