@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() }} Vendor Name * @if($errors->has('name')) {{ $errors->first('name') }} @endif Vendor Id @if($errors->has('vendor_id')) {{ $errors->first('vendor_id') }} @endif Country Code India (+91) UK (+44) USA (+1) @if($errors->has('country_code')) {{ $errors->first('country_code') }} @endif Mobile Number * @if($errors->has('mobile')) {{ $errors->first('mobile') }} @endif Landline Number @if($errors->has('phone')) {{ $errors->first('phone') }} @endif GST No. * @if($errors->has('gst_no')) {{ $errors->first('gst_no') }} @endif PAN No. @if($errors->has('pan_number')) {{ $errors->first('pan_number') }} @endif Email * @if($errors->has('email')) {{ $errors->first('email') }} @endif Website @if($errors->has('website')) {{ $errors->first('website') }} @endif Locations Select options @if($locations) @foreach ($locations as $location) {{$location->name}} @endforeach @endif Status Active In-Active Notify by SMS Notify by Email Notify by Whatsapp Address Line 1 * @if($errors->has('address_1')) {{ $errors->first('address_1') }} @endif Address Line 2 @if($errors->has('address_2')) {{ $errors->first('address_2') }} @endif Area City @if($errors->has('city')) {{ $errors->first('city') }} @endif State @if($errors->has('state')) {{ $errors->first('state') }} @endif Country Pin Code @if($errors->has('pin_code')) {{ $errors->first('pin_code') }} @endif Save Changes Reset @endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection
{{ $errors->first('name') }}
{{ $errors->first('vendor_id') }}
{{ $errors->first('country_code') }}
{{ $errors->first('mobile') }}
{{ $errors->first('phone') }}
{{ $errors->first('gst_no') }}
{{ $errors->first('pan_number') }}
{{ $errors->first('email') }}
{{ $errors->first('website') }}
{{ $errors->first('address_1') }}
{{ $errors->first('address_2') }}
{{ $errors->first('city') }}
{{ $errors->first('state') }}
{{ $errors->first('pin_code') }}