@extends('layouts.layout-admin') @section('styles') @endsection @section('content')

{{ __('Supplier Details') }}

{{ __('Supplier Details') }}

@csrf {{method_field('PUT')}}
@if($errors->has('supplier_company'))

{{ $errors->first('supplier_company') }}

@endif
@if($errors->has('supplier_code'))

{{ $errors->first('supplier_code') }}

@endif
{!! Form::select('name_prefix', $namePrefix, $supplierInfo->name_prefix, ['class' => 'form-control m-bot15']) !!} @if($errors->has('name_prefix'))

{{ $errors->first('name_prefix') }}

@endif
@if($errors->has('contractor_first_name'))

{{ $errors->first('contractor_first_name') }}

@endif
@if($errors->has('contractor_last_name'))

{{ $errors->first('contractor_last_name') }}

@endif
@if($errors->has('supplier_ref'))

{{ $errors->first('supplier_ref') }}

@endif
@if($errors->has('license_number'))

{{ $errors->first('license_number') }}

@endif
@if($errors->has('address'))

{{ $errors->first('address') }}

@endif
@if($errors->has('country_id'))

{{ $errors->first('country_id') }}

@endif
@if($errors->has('state'))

{{ $errors->first('state') }}

@endif
@if($errors->has('city'))

{{ $errors->first('city') }}

@endif
@if($errors->has('postal_code'))

{{ $errors->first('postal_code') }}

@endif
@if($errors->has('phone'))

{{ $errors->first('phone') }}

@endif
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if($errors->has('pan_number'))

{{ $errors->first('pan_number') }}

@endif
@if($errors->has('tan_number'))

{{ $errors->first('tan_number') }}

@endif
@if($errors->has('service_tax_number'))

{{ $errors->first('service_tax_number') }}

@endif
@if($errors->has('iata_no'))

{{ $errors->first('iata_no') }}

@endif
@if($errors->has('tta_no'))

{{ $errors->first('tta_no') }}

@endif
@if($errors->has('fax_number'))

{{ $errors->first('fax_number') }}

@endif
hotel_confirmation)? 'checked' : '' !!} class="form-check-input" name="hotel_confirmation" id="hotel_confirmation">
{!! Form::select('status', $status, $supplierInfo->status, ['class' => 'form-control m-bot15']) !!} @if($errors->has('status'))

{{ $errors->first('status') }}

@endif
{{ __('Cancel') }}
@endsection @section('scripts') @endsection