@if(\Auth::user()->type == 'super admin')
@php $url='subcontractor.update' @endphp
@else
@php $url='subcontractor.update_subcontractor' @endphp
@endif
{{ Form::model($vender, array('route' => array($url, $vender->id) , 'id' => 'subcontractorEdit', 'method' => 'PUT',
'enctype'=>"multipart/form-data")) }}
{{__('Basic Info')}}
@if ($vender->color_code!=null || $vender->color_code!='')
@php $colorcor = $vender->color_code; @endphp
@else
@php $colorcor = $color_co; @endphp
@endif
{!! Form::checkbox('tender_division_all', '1', null, ['class' => 'form-check-input', 'id' => 'tender_division_all']) !!}
{{--
--}}
@if (!$customFields->isEmpty())
@include('customFields.formBuilder')
@endif
{{__('Billing Address')}}
{{ Form::label('billing_country', __('Country'), ['class' => 'form-label']) }}
{{ Form::label('billing_address', __('Address'), ['class' => 'form-label']) }}
*
{{ Form::textarea('billing_address', null, ['class' => 'form-control',
'id'=>'billing_address','rows' => 3]) }}
@php
if($vender->copy_status == 1){
$disabled_enabled = 'disabled';
}
else{
$disabled_enabled = '';
}
@endphp
@if ($vender->copy_status==1)
@php $co='checked' @endphp
@else
@php $co='' @endphp
@endif
@if(App\Models\Utility::getValByName('shipping_display')=='on')
{{__('Shipping Address')}}
@endif
{{Form::close()}}