@extends('layouts/contentLayoutMaster') @section('title', 'Create Vendors') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
{{ csrf_field() }}
@if($errors->has('name'))

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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