@extends('admin.layouts.main') @section('title', 'Add Customer') @section('menu', 'Customers') @section('content')
@csrf
Add Customer
@if ($errors->has('first_name')){{ $errors->first('first_name') }}@endif
@if ($errors->has('last_name')){{ $errors->first('last_name') }}@endif
@if ($errors->has('email')){{ $errors->first('email') }}@endif
@if ($errors->has('phone')){{ $errors->first('phone') }}@endif
@if ($errors->has('password')){{ $errors->first('password') }}@endif
@if ($errors->has('company')){{ $errors->first('company') }}@endif
@if ($errors->has('address_line_1')){{ $errors->first('address_line_1') }}@endif
@if ($errors->has('address_line_2')){{ $errors->first('address_line_2') }}@endif
@if ($errors->has('city')){{ $errors->first('city') }}@endif
@if ($errors->has('state')){{ $errors->first('state') }}@endif
@if ($errors->has('postal_code')){{ $errors->first('postal_code') }}@endif
@if ($errors->has('country_code')){{ $errors->first('country_code') }}@endif
@if ($errors->has('currency_code')){{ $errors->first('currency_code') }}@endif
Status
Publish
Back
@endsection @push('custom-stylesheets') @endpush @push('custom-scripts') @endpush