@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')}}
GST Type
*
{!! Form::select('gst_type', ['Regular' => 'Regular', 'Composition' => 'Composition', 'Unregistered' => 'Unregistered'], old('gst_type', $companyProfile->gst_type ?? 'Unregistered'), ['class' => 'form-control', 'id' => 'gst_type', 'required']) !!}
{{$errors->first('gst_type')}}
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')}}
Financial Year End
Tag Line
Faith Line
Service Area
Address Line 2
PIN Code
Udyam No
UIN No
Registration Number
Contact Person
Contact Person Mobile
Contact Email
Header Color
Remark
{{$errors->first('remark')}}
Submit
{!! Form::close() !!}
@stack('footer_script') @include('layout.notification')