@extends('layouts.layout-admin') @section('styles') @endsection @section('content') {{ __('Create Customer') }} {{ __('Home') }} {{ __('Create Customer') }} {{ __('Create Customer') }} @csrf {{ __('User Name') }} * @if($errors->has('user_name')) {{ $errors->first('user_name') }} @endif {{ __('Email') }} * @if($errors->has('email')) {{ $errors->first('email') }} @endif {{ __('Address Line 1') }} * @if($errors->has('address_line_1')) {{ $errors->first('address_line_1') }} @endif {{ __('Address Line 2') }} * @if($errors->has('address_line_2')) {{ $errors->first('address_line_2') }} @endif {{ __('City') }} * @if($errors->has('city')) {{ $errors->first('city') }} @endif {{ __('Postal Code') }} * @if($errors->has('postal_code')) {{ $errors->first('postal_code') }} @endif {{ __('State') }} * @if($errors->has('state')) {{ $errors->first('state') }} @endif {{ __('Country') }} * @if($errors->has('country')) {{ $errors->first('country') }} @endif {{ __('Phone Number') }} * @if($errors->has('phone')) {{ $errors->first('phone') }} @endif {{ __('Company Name') }} * @if($errors->has('company_name')) {{ $errors->first('company_name') }} @endif {{ __('Status') }}* {!! Form::select('status', $status, null, ['class' => 'form-control m-bot15']) !!} @if($errors->has('status')) {{ $errors->first('status') }} @endif {{ __('Add Customer') }} {{ __('Cancel') }} @endsection @section('scripts') @endsection
{{ $errors->first('user_name') }}
{{ $errors->first('email') }}
{{ $errors->first('address_line_1') }}
{{ $errors->first('address_line_2') }}
{{ $errors->first('city') }}
{{ $errors->first('postal_code') }}
{{ $errors->first('state') }}
{{ $errors->first('country') }}
{{ $errors->first('phone') }}
{{ $errors->first('company_name') }}
{{ $errors->first('status') }}