@extends('layouts.layout-2') @section('content') {{-- @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif --}}

{{ __('Kunden hinzufügen') }}

{!! Form::open(['url' => route('user_customer_edit', ['new']), 'class' => 'form-horizontal']) !!}
{{ Form::text('email', '', array('placeholder'=>'E-Mail Adresse', 'class'=>'form-control', 'id'=>'email', 'required'=>true ,'tabindex' => 1)) }} @if ($errors->has('email')) {{ $errors->first('email') }} @endif

Kundenhoheit: Es können nur Kunden hinzugefügt werden, die noch nicht im Salescenter vorhanden sind.

 

{!! Form::close() !!} {!! Form::open(['url' => route('user_customer_edit', ['new']), 'class' => 'form-horizontal']) !!}
{!! Form::close() !!}
@if($step == 1) {!! Form::open(['url' => route('user_customer_edit', ['new']), 'class' => 'form-horizontal', 'id'=>'lead-form-validation']) !!} @include('admin.customer._edit')
 
{!! Form::close() !!}
@endif
@endsection