08 2024
This commit is contained in:
parent
04d677d37a
commit
bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions
|
|
@ -18,7 +18,7 @@
|
|||
@endif
|
||||
--}}
|
||||
<h4 class="font-weight-bold py-2 mb-2">
|
||||
{{ __('Kunden hinzufügen') }}
|
||||
{{ __('customer.customer_add') }}
|
||||
</h4>
|
||||
|
||||
<div id="smartwizard-3" class="smartwizard-add-client">
|
||||
|
|
@ -27,8 +27,8 @@
|
|||
<a href="#smartwizard-3-step-1" class="mb-3">
|
||||
<span class="sw-done-icon ion ion-md-checkmark"></span>
|
||||
<span class="sw-number">1</span>
|
||||
E-Mail Adresse
|
||||
<div class="text-muted small">prüfen</div>
|
||||
{{ __('E-Mail Address') }}
|
||||
<div class="text-muted small">{{ __('customer.check') }}</div>
|
||||
|
||||
</a>
|
||||
</li>
|
||||
|
|
@ -36,8 +36,8 @@
|
|||
<a href="#smartwizard-3-step-2" class="mb-3">
|
||||
<span class="sw-done-icon ion ion-md-checkmark"></span>
|
||||
<span class="sw-number">2</span>
|
||||
Daten
|
||||
<div class="text-muted small">eingeben</div>
|
||||
{{ __('Data') }}
|
||||
<div class="text-muted small">{{ __('customer.enter') }}</div>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
@ -49,17 +49,17 @@
|
|||
<div class="form-row">
|
||||
<div class="form-group col-md-12 {{ $errors->has('email') ? 'has-error' : '' }}">
|
||||
<label class="form-label" for="email">{{ __('E-Mail Address') }}*</label>
|
||||
{{ Form::text('email', '', array('placeholder'=>'E-Mail Adresse', 'class'=>'form-control', 'id'=>'email', 'required'=>true ,'tabindex' => 1)) }}
|
||||
{{ Form::text('email', '', array('placeholder'=>__('E-Mail Address'), 'class'=>'form-control', 'id'=>'email', 'required'=>true ,'tabindex' => 1)) }}
|
||||
@if ($errors->has('email'))
|
||||
<span class="help-block">
|
||||
<strong>{{ $errors->first('email') }}</strong>
|
||||
</span>
|
||||
@endif
|
||||
<p class="mt-2">Kundenhoheit: Es können nur Kunden hinzugefügt werden, die noch nicht im mivita-Salescenter vorhanden sind. </p>
|
||||
<p class="mt-2">{{ __('customer.customer_sovereignty_info1') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-left mt-2">
|
||||
<button type="submit" class="btn btn-secondary" name="action" value="add_customer_with_email">{{ __('prüfen und weiter') }}</button>
|
||||
<button type="submit" class="btn btn-secondary" name="action" value="add_customer_with_email">{{ __('customer.check_and_next') }}</button>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
|
@ -73,13 +73,13 @@
|
|||
<span class="switcher-yes"></span>
|
||||
<span class="switcher-no"></span>
|
||||
</span>
|
||||
<span class="switcher-label">Kunde ohne E-Mail hinzufügen</span>
|
||||
<span class="switcher-label">{{ __('customer.add_customer_without_email') }}</span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-left" style="display: none" id="show-button-without-email">
|
||||
<p class="mt-2">Hinweis: Du kannst Deine Kunden auch ohne Email-Adresse anlegen. Das System gleicht dann Nachname und Postleitzahl ab. Sollte es hier mal Übereinstimmungen geben, gleicht der Support von MIVITA die Kundensätze ab und ordnet sie den Beratern entsprechend zu. Daher empfehlen wir im besten Fall immer die Angabe einer Email-Adresse. Diese ist einzigartig und damit eindeutig einem Kunden zuzuordnen.</p>
|
||||
<button type="submit" class="btn btn-secondary" name="action" value="add_customer_without_email">{{ __('weiter ohne E-Mail') }}</button>
|
||||
<p class="mt-2">{{ __('customer.add_customer_without_email_info1') }}</p>
|
||||
<button type="submit" class="btn btn-secondary" name="action" value="add_customer_without_email">{{ __('customer.next_without_email') }}</button>
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
|
||||
|
|
@ -90,7 +90,6 @@
|
|||
@if($step == 1)
|
||||
{!! Form::open(['url' => route('user_customer_edit', ['new']), 'class' => 'form-horizontal', 'id'=>'lead-form-validation']) !!}
|
||||
@include('admin.customer._edit')
|
||||
|
||||
<div class="text-left mt-3">
|
||||
<button type="submit" class="btn btn-secondary" name="action" value="shopping-user-store-new">{{ __('save changes') }}</button>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue