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

Create Customer

Create Customer Form

@csrf

Customer personal Info


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

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

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

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

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

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

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

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

@endif

Login Details


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

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

@endif
Please never share your email & password with anyone else. @if($errors->has('password'))

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

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