@extends('admin.layouts.master') @section('title', 'Add Customer') @section('content')
@csrf
Add New Customer
{{-- first_name --}}
@if ($errors->has('first_name'))

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
Shipping Address *
@endsection