475 lines
26 KiB
PHP
475 lines
26 KiB
PHP
<div class="card mb-4">
|
|
<h5 class="card-header">
|
|
{{ __('Rechnungsdaten') }}
|
|
</h5>
|
|
<div class="card-body">
|
|
<input type="hidden" name="user_id" value="{{$user->id}}">
|
|
<div class="form-row">
|
|
<div class="form-group col-md-12">
|
|
<label for="company" class="form-label">{{ __('Company name') }} (optional)</label>
|
|
{{ Form::text('company', $user->account->company, array('placeholder'=>__('Company name'), 'class'=>'form-control', 'id'=>'company', 'tabindex' => 1)) }}
|
|
</div>
|
|
</div>
|
|
<div class="form-row">
|
|
|
|
<div class="form-group col-md-2 {{ $errors->has('salutation') ? 'has-error' : '' }}">
|
|
<label class="form-label">{{ __('Salutation') }}*</label>
|
|
<select class="selectpicker" data-style="btn-light" name="salutation" id="salutation" required tabindex="2">
|
|
{!! HTMLHelper::getSalutation($user->account->salutation) !!}
|
|
</select>
|
|
@if ($errors->has('salutation'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('salutation') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
|
|
<div class="form-group col-md-5 {{ $errors->has('first_name') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="first_name">{{ __('First name') }}*</label>
|
|
{{ Form::text('first_name', $user->account->first_name, array('placeholder'=>__('First name'), 'class'=>'form-control', 'id'=>'first_name', 'required'=>true, 'tabindex' => 4)) }}
|
|
@if ($errors->has('first_name'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('first_name') }}</strong>
|
|
</span>
|
|
@endif
|
|
|
|
</div>
|
|
<div class="form-group col-md-5 {{ $errors->has('last_name') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="last_name">{{ __('Last Name') }}*</label>
|
|
{{ Form::text('last_name', $user->account->last_name, array('placeholder'=>__('Last Name'), 'class'=>'form-control', 'id'=>'last_name', 'required'=>true, 'tabindex' => 5)) }}
|
|
@if ($errors->has('last_name'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('last_name') }}</strong>
|
|
</span>
|
|
@endif
|
|
|
|
</div>
|
|
</div>
|
|
<div class="form-group {{ $errors->has('address') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="address">{{ __('Street') }} / {{ __('House number') }}*</label>
|
|
{{ Form::text('address', $user->account->address, array('placeholder'=>__('Street'), 'class'=>'form-control', 'required'=>true, 'id'=>'address', 'tabindex' => 6)) }}
|
|
@if ($errors->has('address'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('address') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
<div class="form-group {{ $errors->has('address_2') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="address_2">{{ __('Wohnung / Gebäude (optional)') }}</label>
|
|
{{ Form::text('address_2', $user->account->address_2, array('placeholder'=>__('Wohnung / Gebäude (optional)'), 'class'=>'form-control', 'id'=>'address_2', 'tabindex' => 6)) }}
|
|
</div>
|
|
<div class="form-row">
|
|
<div class="form-group col-md-2 {{ $errors->has('zipcode') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="zipcode">{{ __('Postcode') }}*</label>
|
|
{{ Form::text('zipcode', $user->account->zipcode, array('placeholder'=>__('Postcode'), 'class'=>'form-control', 'required'=>true, 'id'=>'zipcode', 'tabindex' => 7)) }}
|
|
@if ($errors->has('zipcode'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('zipcode') }}</strong>
|
|
</span>
|
|
@endif
|
|
|
|
</div>
|
|
<div class="form-group col-md-6 {{ $errors->has('city') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="city">{{ __('City') }}*</label>
|
|
{{ Form::text('city', $user->account->city, array('placeholder'=>__('City'), 'class'=>'form-control', 'required'=>true, 'id'=>'city', 'tabindex' => 8)) }}
|
|
@if ($errors->has('city'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('city') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
<div class="form-group col-md-4 {{ $errors->has('country_id') ? 'has-error' : '' }}">
|
|
<label class="form-label">{{ __('Country') }}*</label>
|
|
<select class="selectpicker" name="country_id" id="country_id" data-style="btn-light" data-live-search="true" required tabindex="9">
|
|
{!! HTMLHelper::getContriesWithMore($user->account->country_id) !!}
|
|
</select>
|
|
@if ($errors->has('country_id'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('country_id') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
<div class="form-group col-md-4">
|
|
<label class="form-label" for="pre_phone_id">{{ __('Country code') }}</label>
|
|
<select class="selectpicker" name="pre_phone_id" id="pre_phone_id" data-style="btn-light" data-live-search="true" tabindex="10">
|
|
{!! HTMLHelper::getContriesCodes($user->account->pre_phone_id) !!}
|
|
</select>
|
|
</div>
|
|
<div class="form-group col-md-8 {{ $errors->has('phone') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="phone">{{ __('Phone') }}</label>
|
|
{{ Form::text('phone', $user->account->phone, array('placeholder'=>__('Phone'), 'class'=>'form-control', 'id'=>'phone', 'tabindex' => 11)) }}
|
|
</div>
|
|
</div>
|
|
<div class="form-row">
|
|
<div class="form-group col-md-4">
|
|
<label class="form-label" for="pre_mobil_id">{{ __('Country code') }}</label>
|
|
<select class="selectpicker" name="pre_mobil_id" id="pre_mobil_id" data-style="btn-light" data-live-search="true" tabindex="12">
|
|
{!! HTMLHelper::getContriesCodes($user->account->pre_mobil_id) !!}
|
|
</select>
|
|
</div>
|
|
<div class="form-group col-md-8 {{ $errors->has('mobil') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="mobil">{{ __('Mobile Phone') }}</label>
|
|
{{ Form::text('mobil', $user->account->mobil, array('placeholder'=>__('Mobile Phone'), 'class'=>'form-control', 'id'=>'mobil', 'tabindex' => 13)) }}
|
|
</div>
|
|
<div class="form-group col-md-12">
|
|
@if($errors->has('phone') || $errors->has('mobil'))
|
|
<div class="alert badge-danger block p-2">Bitte {{ __('Phone') }} und/oder {{ __('Mobile Phone') }} angeben!*</div>
|
|
@else
|
|
<div class="badge badge-warning">Bitte {{ __('Phone') }} und/oder {{ __('Mobile Phone') }} angeben!*</div>
|
|
@endif
|
|
</div>
|
|
|
|
</div>
|
|
@if(!isset($step))
|
|
<hr>
|
|
|
|
@if($user->email)
|
|
<div class="form-row">
|
|
<div class="form-group col-md-6">
|
|
<label class="form-label" for="email">{{ __('E-Mail Address') }}*</label>
|
|
{{ Form::text('email', $user->email, array('placeholder'=>'E-Mail', 'class'=>'form-control', 'id'=>'email', 'readonly'=>true, 'tabindex' => 14)) }}
|
|
</div>
|
|
<div class="form-group col-md-6">
|
|
<label class="form-label" for="email-confirm">{{ __('Confirm E-Mail') }}</label>
|
|
{{ Form::text('email-confirm', $user->email, array('placeholder'=>__('Confirm E-Mail'), 'class'=>'form-control', 'id'=>'email-confirm', 'readonly'=>true, 'tabindex' => 15)) }}
|
|
</div>
|
|
</div>
|
|
@if(isset($can_change_mail))
|
|
@if(count($user->user_update_email) > 0)
|
|
<p class="badge badge-primary" style=" color:#fff;">{{ $user->user_update_email->first()->email }} {{__('waiting for activation since')}} | {{ $user->user_update_email->first()->created_at->format('d.m.Y H:i') }}</p><br>
|
|
@endif
|
|
<a href="{{ route('admin_lead_change_mail', [$user->id]) }}" class="btn btn-default btn-sm"> {{ __('Contact') }} {{__('Change E-Mail')}}</a>
|
|
@else
|
|
<a href="{{ route('user_update_email', [$user->id]) }}" class="btn btn-default btn-sm">{{__('Change E-Mail')}}</a>
|
|
@endif
|
|
@else
|
|
<div class="form-row">
|
|
<div class="form-group col-md-6">
|
|
<label class="form-label" for="email">{{ __('E-Mail Address') }}*</label>
|
|
{{ Form::text('email', $user->email, array('placeholder'=>'E-Mail', 'class'=>'form-control', 'id'=>'email', 'tabindex' => 14)) }}
|
|
</div>
|
|
<div class="form-group col-md-6">
|
|
<label class="form-label" for="email-confirm">{{ __('Confirm E-Mail') }}</label>
|
|
{{ Form::text('email-confirm', $user->email, array('placeholder'=>__('Confirm E-Mail'), 'class'=>'form-control', 'id'=>'email-confirm', 'tabindex' => 15)) }}
|
|
</div>
|
|
</div>
|
|
|
|
@endif
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card mb-4">
|
|
<div class="card-body">
|
|
<div class="form-row">
|
|
<div class="form-group col-md-6">
|
|
<label class="form-label" for="tax_number">{{ __('Steuernummer') }} @if($user->account->getCountryAttrAs('tax_number'))* @endif</label>
|
|
{{ Form::text('tax_number', $user->account->tax_number, array('placeholder'=>__('Steuernummer'), 'class'=>'form-control', 'id'=>'tax_number', $user->account->getCountryAttrAs('tax_number','required'))) }}
|
|
</div>
|
|
<div class="form-group col-md-6">
|
|
<label class="form-label" for=" tax_identification_number">{{ __('USt-ID Nummer') }} @if($user->account->getCountryAttrAs('tax_id_number'))* @endif</label>
|
|
{{ Form::text(' tax_identification_number', $user->account-> tax_identification_number, array('placeholder'=>__('USt-ID Nummer'), 'class'=>'form-control', 'id'=>' tax_identification_number', $user->account->getCountryAttrAs('tax_id_number','required'))) }}
|
|
</div>
|
|
<div class="form-group col-md-12">
|
|
<label class="form-label" for="taxable_sales">{{ __('Umsatzsteuerpflicht') }} @if($user->account->getCountryAttrAs('taxable_sales'))* @endif</label>
|
|
<select class="selectpicker" name="taxable_sales" id="taxable_sales" data-style="btn-light" @if($user->account->getCountryAttrAs('taxable_sales')) required @endif>
|
|
{!! HTMLHelper::getTaxSaleOptions($user->account->taxable_sales) !!}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="custom-control custom-checkbox m-0">
|
|
<input type="checkbox" class="custom-control-input" name="same_as_billing" id="same_as_billing" @if($user->account->same_as_billing) checked="checked" @endif>
|
|
<span class="custom-control-label">{{__('Versand an die gleiche Adresse')}}</span>
|
|
</label>
|
|
</div>
|
|
<div class="card mb-4" id="show_shipping_address" style="@if($user->account->same_as_billing) display:none @endif">
|
|
<h5 class="card-header">
|
|
{{ __('Versand Adresse') }}
|
|
</h5>
|
|
<div class="card-body">
|
|
|
|
<div class="form-row">
|
|
<div class="form-group col-md-12">
|
|
<label for="shipping_company" class="form-label">{{ __('Company name') }} (optional)</label>
|
|
{{ Form::text('shipping_company', $user->account->shipping_company, array('placeholder'=>__('Company name'), 'class'=>'form-control', 'id'=>'shipping_company', 'tabindex' => 16)) }}
|
|
</div>
|
|
</div>
|
|
<div class="form-row">
|
|
<div class="form-group col-md-2 {{ $errors->has('shipping_salutation') ? 'has-error' : '' }}">
|
|
<label class="form-label">{{ __('Salutation') }}*</label>
|
|
<select class="selectpicker" data-style="btn-light" name="shipping_salutation" id="shipping_salutation" required tabindex="17">
|
|
{!! HTMLHelper::getSalutation($user->account->shipping_salutation) !!}
|
|
</select>
|
|
@if ($errors->has('shipping_salutation'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('shipping_salutation') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
|
|
<div class="form-group col-md-5 {{ $errors->has('shipping_firstname') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="shipping_firstname">{{ __('First name') }}*</label>
|
|
{{ Form::text('shipping_firstname', $user->account->shipping_firstname, array('placeholder'=>__('First name'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_firstname', 'tabindex' => 18)) }}
|
|
@if ($errors->has('shipping_firstname'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('shipping_firstname') }}</strong>
|
|
</span>
|
|
@endif
|
|
|
|
</div>
|
|
<div class="form-group col-md-5 {{ $errors->has('shipping_lastname') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="shipping_lastname">{{ __('Last Name') }}*</label>
|
|
{{ Form::text('shipping_lastname', $user->account->shipping_lastname, array('placeholder'=>__('Last Name'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_lastname', 'tabindex' => 19)) }}
|
|
@if ($errors->has('shipping_lastname'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('shipping_lastname') }}</strong>
|
|
</span>
|
|
@endif
|
|
|
|
</div>
|
|
</div>
|
|
<div class="form-group {{ $errors->has('shipping_address') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="shipping_address">{{ __('Street') }} / {{ __('House number') }}*</label>
|
|
{{ Form::text('shipping_address', $user->account->shipping_address, array('placeholder'=>__('Street'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_address', 'tabindex' => 20)) }}
|
|
@if ($errors->has('shipping_address'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('shipping_address') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
<div class="form-group {{ $errors->has('shipping_address_2') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="shipping_address_2">{{ __('Wohnung / Gebäude (optional)') }}</label>
|
|
{{ Form::text('shipping_address_2', $user->account->shipping_address_2, array('placeholder'=>__('Wohnung / Gebäude (optional)'), 'class'=>'form-control', 'id'=>'shipping_address_2', 'tabindex' => 21)) }}
|
|
@if ($errors->has('shipping_address_2'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('shipping_address_2') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
<div class="form-row">
|
|
<div class="form-group col-md-2 {{ $errors->has('shipping_zipcode') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="shipping_zipcode">{{ __('Postcode') }}*</label>
|
|
{{ Form::text('shipping_zipcode', $user->account->shipping_zipcode, array('placeholder'=>__('Postcode'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_zipcode', 'tabindex' => 22)) }}
|
|
@if ($errors->has('shipping_zipcode'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('shipping_zipcode') }}</strong>
|
|
</span>
|
|
@endif
|
|
|
|
</div>
|
|
<div class="form-group col-md-6 {{ $errors->has('shipping_city') ? 'has-error' : '' }}">
|
|
<label class="form-label" for="shipping_city">{{ __('City') }}*</label>
|
|
{{ Form::text('shipping_city', $user->account->shipping_city, array('placeholder'=>__('City'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_city', 'tabindex' => 23)) }}
|
|
@if ($errors->has('shipping_city'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('shipping_city') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
<div class="form-group col-md-4 {{ $errors->has('shipping_country_id') ? 'has-error' : '' }}">
|
|
<label class="form-label">{{ __('Country') }}*</label>
|
|
<select class="selectpicker" name="shipping_country_id" id="shipping_country_id" data-style="btn-light" data-live-search="true" required tabindex="24">
|
|
{!! HTMLHelper::getContriesWithMore($user->account->shipping_country_id) !!}
|
|
</select>
|
|
@if ($errors->has('shipping_country_id'))
|
|
<span class="help-block">
|
|
<strong>{{ $errors->first('shipping_country_id') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
<div class="form-row">
|
|
<div class="form-group col-md-4">
|
|
<label class="form-label" for="shipping_pre_phone_id">{{ __('Country code') }}</label>
|
|
<select class="selectpicker" name="shipping_pre_phone_id" id="shipping_pre_phone_id" data-style="btn-light" data-live-search="true" tabindex="25">
|
|
{!! HTMLHelper::getContriesCodes($user->account->shipping_pre_phone_id) !!}
|
|
</select>
|
|
</div>
|
|
<div class="form-group col-md-8">
|
|
<label class="form-label" for="shipping_phone">{{ __('Phone') }}</label>
|
|
{{ Form::text('shipping_phone', $user->account->shipping_phone, array('placeholder'=>__('Phone'), 'class'=>'form-control', 'id'=>'shipping_phone', 'tabindex' => 26)) }}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card mb-4">
|
|
<h5 class="card-header">
|
|
{{ __('weiteres') }}
|
|
</h5>
|
|
<div class="card-body">
|
|
<div class="form-row">
|
|
<div class="form-group col-md-4">
|
|
<label for="birthday" class="form-label">{{ __('Geburtsdatum') }}*</label>
|
|
{{ Form::text('birthday', $user->account->birthday, array('placeholder'=>Util::formatDate(), 'data-date-format'=>Util::formatDate(), 'data-start_view'=>2, 'required'=>true, 'class'=>'form-control datepicker-birthday')) }}
|
|
</div>
|
|
<div class="form-group col-md-4">
|
|
<label class="form-label" for="website">{{ __('Webseite') }}</label>
|
|
{{ Form::text('website', $user->account->website, array('placeholder'=>__('Webseite'), 'class'=>'form-control', 'id'=>'website')) }}
|
|
|
|
</div>
|
|
<div class="form-group col-md-4">
|
|
<label class="form-label" for="instagram">{{ __('Instagram') }}</label>
|
|
{{ Form::text('instagram', $user->account->instagram, array('placeholder'=>__('Instagram'), 'class'=>'form-control', 'id'=>'instagram')) }}
|
|
|
|
</div>
|
|
</div>
|
|
<div class="form-row">
|
|
<div class="form-group col-md-6">
|
|
<label class="form-label" for="facebook">{{ __('Facebook') }}</label>
|
|
{{ Form::text('facebook', $user->account->facebook, array('placeholder'=>__('Facebook'), 'class'=>'form-control', 'id'=>'facebook')) }}
|
|
|
|
</div>
|
|
<div class="form-group col-md-6">
|
|
<label class="form-label" for="facebook_fanpage">{{ __('Facebook Fanpage') }}</label>
|
|
{{ Form::text('facebook_fanpage', $user->account->facebook_fanpage, array('placeholder'=>__('Facebook Fanpage'), 'class'=>'form-control', 'id'=>'facebook_fanpage')) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="application/javascript">
|
|
|
|
$( document ).ready(function() {
|
|
|
|
// Shipping Address show|hide
|
|
$("#same_as_billing").on("change", function () {
|
|
$('#show_shipping_address').slideToggle(200, function () {
|
|
|
|
// scroll down to shipping area.
|
|
if ($('#show_shipping_address').is(":visible")) {
|
|
_scrollTo('#show_shipping_address', 20);
|
|
}
|
|
});
|
|
});
|
|
|
|
$('.datepicker-birthday').datepicker({
|
|
todayBtn: 'linked',
|
|
daysOfWeekDisabled: '1',
|
|
multidate: false,
|
|
daysOfWeekHighlighted: '0,6',
|
|
autoclose: true,
|
|
format: 'dd.mm.yyyy',
|
|
language: 'de',
|
|
clearBtn: true,
|
|
startView: 2,
|
|
|
|
});
|
|
|
|
$.extend( $.validator.messages, {
|
|
required: "Dieses Feld ist ein Pflichtfeld.",
|
|
maxlength: $.validator.format( "Geben Sie bitte maximal {0} Zeichen ein." ),
|
|
minlength: $.validator.format( "Geben Sie bitte mindestens {0} Zeichen ein." ),
|
|
rangelength: $.validator.format( "Geben Sie bitte mindestens {0} und maximal {1} Zeichen ein." ),
|
|
email: "Geben Sie bitte eine gültige E-Mail Adresse ein.",
|
|
url: "Geben Sie bitte eine gültige URL ein.",
|
|
date: "Bitte geben Sie ein gültiges Datum ein.",
|
|
number: "Geben Sie bitte eine Nummer ein.",
|
|
digits: "Geben Sie bitte nur Ziffern ein.",
|
|
equalTo: "Bitte denselben Wert wiederholen.",
|
|
range: $.validator.format( "Geben Sie bitte einen Wert zwischen {0} und {1} ein." ),
|
|
max: $.validator.format( "Geben Sie bitte einen Wert kleiner oder gleich {0} ein." ),
|
|
min: $.validator.format( "Geben Sie bitte einen Wert größer oder gleich {0} ein." ),
|
|
creditcard: "Geben Sie bitte eine gültige Kreditkarten-Nummer ein."
|
|
});
|
|
|
|
// Set up validator
|
|
$('#lead-form-validation').validate({
|
|
rules: {
|
|
'email': {
|
|
required: true,
|
|
email: true,
|
|
remote:
|
|
{
|
|
url: "{{ route('user_check_mail') }}",
|
|
type: "post",
|
|
data:
|
|
{
|
|
user_id: function()
|
|
{
|
|
return $('#lead-form-validation :input[name="user_id"]').val();
|
|
},
|
|
email: function()
|
|
{
|
|
return $('#lead-form-validation :input[name="email"]').val();
|
|
}
|
|
},
|
|
encode: true,
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
|
},
|
|
}
|
|
},
|
|
'email-confirm': {
|
|
required: true,
|
|
equalTo: "#email"
|
|
},
|
|
},
|
|
errorPlacement: function errorPlacement(error, element) {
|
|
$(element).parents('.form-group').append(
|
|
error.addClass('invalid-feedback small d-block')
|
|
)
|
|
},
|
|
highlight: function (element) {
|
|
if ($(element).hasClass('selectpicker')) {
|
|
$(element).parent().addClass('is-invalid');
|
|
}
|
|
$(element).addClass('is-invalid');
|
|
},
|
|
unhighlight: function (element) {
|
|
$(element).removeClass('is-invalid');
|
|
$(element).parents('.form-group').find('.is-invalid').removeClass('is-invalid');
|
|
},
|
|
messages : {
|
|
required: "{{__('This field is required.')}}",
|
|
country_id : {
|
|
required: "{{__('This field is required.')}}",
|
|
},
|
|
salutation : {
|
|
required: "{{__('Bitte angeben.')}}",
|
|
},
|
|
first_name : {
|
|
required: "{{__('This field is required.')}}",
|
|
},
|
|
last_name : {
|
|
required: "{{__('This field is required.')}}",
|
|
},
|
|
zipcode : {
|
|
required: "{{__('This field is required.')}}",
|
|
},
|
|
address : {
|
|
required: "{{__('This field is required.')}}",
|
|
},
|
|
city : {
|
|
required: "{{__('This field is required.')}}",
|
|
},
|
|
birthday : {
|
|
required: "{{__('This field is required.')}}",
|
|
},
|
|
|
|
equalTo : "{{__('Please enter the same value again.')}}",
|
|
'email-confirm' : {
|
|
equalTo : "{{__('Please enter the same value again.')}}",
|
|
required: "{{__('This field is required.')}}",
|
|
},
|
|
email: {
|
|
required : "{{__('This field is required.')}}",
|
|
email: "{{ __('Please enter a valid email address.') }}",
|
|
remote : "{{ __('This E-mail is already in use.') }}"
|
|
},
|
|
},
|
|
onkeyup: false
|
|
});
|
|
|
|
});
|
|
</script>
|