@extends('layouts/contentLayoutMaster') @section('title', 'Add Client') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
{{ csrf_field() }}
@if($source == 'B2C')
@if($errors->has('first_name'))

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

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

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

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

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

@endif
@else
@if($errors->has('b2b_company_name'))

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
  • Notify by SMS
  • Notify by Email
  • Notify by Whatsapp
@if($errors->has('street_addr1'))

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

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

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

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

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

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

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

@endif
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection