@extends('layouts.app' ) @section('title') Add New Vendor @stop @section('breadcrumb') @stop @section('content')

Add New Vendor

Add Information

{{csrf_field()}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('vendor_type')) {{ $errors->first('vendor_type') }} @endif
@if ($errors->has('cnic')) {{ $errors->first('cnic') }} @endif
@if ($errors->has('rep_name')) {{ $errors->first('rep_name') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('opening_balance')) {{ $errors->first('opening_balance') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
 
@stop