@extends('layouts.template') @section('template')

Create New Customer

{!! csrf_field() !!}

 Personal Info

@if($errors->has('customer_name')) {{ $errors->first('customer_name')}} @endif
@if($errors->has('address')) {{ $errors->first('address')}} @endif
@if($errors->has('mobile_no')) {{ $errors->first('mobile_no')}} @endif
@if($errors->has('phone')) {{ $errors->first('phone')}} @endif
@if($errors->has('email')) {{ $errors->first('email')}} @endif

 

@if($errors->has('customer_image')) {{ $errors->first('customer_image')}} @endif

 Balance Info

@if($errors->has('debit')) {{ $errors->first('debit')}} @endif
@if($errors->has('credit')) {{ $errors->first('credit')}} @endif
@endsection