@extends('business.partials.layout') @section('css') @endsection @section('content')

Create Vendor

@csrf

Personal Info

@if($errors->has('company_name'))

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

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

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

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

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

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

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

@endif

Address Info

@if($errors->has('country'))

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

@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('street_address'))

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

@endif
@endsection @section('js') @endsection