@extends('layouts.layout-admin') @section('styles') @endsection @section('content')

{{ __('Create Customer') }}

{{ __('Create Customer') }}

@csrf
@if($errors->has('user_name'))

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

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

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

@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('postal_code'))

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

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

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

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

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

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

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

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

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

@endif
{!! Form::select('status', $status, null, ['class' => 'form-control m-bot15']) !!} @if($errors->has('status'))

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

@endif
{{ __('Cancel') }}
@endsection @section('scripts') @endsection