08 2024
This commit is contained in:
parent
04d677d37a
commit
bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions
|
|
@ -70,8 +70,7 @@
|
|||
}
|
||||
</style>
|
||||
|
||||
<script src='https://www.google.com/recaptcha/api.js'></script>
|
||||
|
||||
<script src='https://www.google.com/recaptcha/api.js?explicit&hl={{ \App::getLocale() }}'></script>
|
||||
|
||||
<section>
|
||||
<div class="container">
|
||||
|
|
@ -98,7 +97,7 @@
|
|||
<div class="row contact-row">
|
||||
<div class="form-group col-md-12">
|
||||
{!! Form::label('salutation', __('Salutation').'*') !!}
|
||||
{!! Form::select('salutation', [''=>'Bitte wählen', 'mr'=>'Herr', 'ms'=>'Frau'], '', ['class' => 'form-control '.($errors->has('salutation') ? 'error is-invalid' : '')]) !!}
|
||||
{!! Form::select('salutation', [''=>__('please select'), 'mr'=>__('MR'), 'ms'=>__('MS')], '', ['class' => 'form-control '.($errors->has('salutation') ? 'error is-invalid' : '')]) !!}
|
||||
@if ($errors->has('salutation'))
|
||||
<div class="alert alert-danger error"><!-- DANGER -->
|
||||
{{ $errors->first('salutation') }}
|
||||
|
|
@ -168,12 +167,10 @@
|
|||
@endif
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-md-12">
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-md-12" style="margin-bottom: 8px; margin-top: 8px;">
|
||||
<label class="checkbox {{ ($errors->has('accepted_data_protection') ? 'error' : '') }}" for="accepted_data_protection">
|
||||
{!! Form::checkbox('accepted_data_protection', 1, false, ['id'=>'accepted_data_protection', 'class' => 'form-control '.($errors->has('accepted_data_protection') ? 'error' : ''), '']) !!}
|
||||
|
|
@ -201,7 +198,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn btn-primary btn-text-500"><i class="fa fa-check"></i> jetzt registrieren</button>
|
||||
<button type="submit" class="btn btn-primary btn-text-500"><i class="fa fa-check"></i> {{ __('website.register_now') }} </button>
|
||||
{!! Form::close() !!}
|
||||
</div> <!-- end col -->
|
||||
<!-- /FORM -->
|
||||
|
|
@ -209,60 +206,7 @@
|
|||
|
||||
|
||||
<!-- INFO -->
|
||||
<div class="col-md-3 col-sm-4" style="border-left: 1px solid #ddd;">
|
||||
|
||||
|
||||
@if($user_shop)
|
||||
<h2 class="text-center">Kontakt</h2>
|
||||
<p class="text-center">Ich freue mich über Deinen Besuch in meinem MIVITA Onlineshop. Ich bin Deine persönliche Beratung rund um die Produkte und ihrer Anwendung.</p>
|
||||
<div class="text-center">
|
||||
@if($user_shop->isImage())
|
||||
<img class="img-responsive rounded avatar" src="{{ url($user_shop->getImage()) }}" alt="">
|
||||
@else
|
||||
<img class="img-responsive rounded avatar" src="{{ asset('assets/images/avatar.png') }}" alt="">
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<p class="text-center">
|
||||
@if($user_shop->title)
|
||||
<strong style="color: #97b085; font-size: 1.1em;">{{ $user_shop->title }}</strong><br>
|
||||
@endif
|
||||
@if($user_shop->contact)
|
||||
{!! nl2br($user_shop->contact) !!}
|
||||
@endif
|
||||
<br>
|
||||
{{ $user_shop->getSubdomain(true) }}
|
||||
</p>
|
||||
|
||||
@if($user_shop->accessibility)
|
||||
<p class="text-center">
|
||||
<strong>Meine Erreichbarkeit:</strong><br>
|
||||
{!! nl2br($user_shop->accessibility) !!}
|
||||
</p>
|
||||
@endif
|
||||
|
||||
@else
|
||||
|
||||
<h2>Kontakt</h2>
|
||||
<hr/>
|
||||
<p>
|
||||
<span class="block"><strong><i class="fa fa-map-marker"></i> Adresse:<br></strong> mivita e.K.<br>
|
||||
Leinfeld 2<br>
|
||||
87755 Kirchhaslach</span>
|
||||
<span class="block"><strong><i class="fa fa-phone"></i> Telefon:</strong> <a
|
||||
href="tel:0 8333 946 17 67">0 8333 946 17 67</a></span>
|
||||
<span class="block"><strong><i class="fa fa-envelope"></i> Email:</strong> <a
|
||||
href="mailto:info@mivita.care">info@mivita.care</a></span>
|
||||
</p>
|
||||
<hr/>
|
||||
<h4 class="font300">Geschäftszeiten</h4>
|
||||
<p>
|
||||
<span class="block"><strong>Mo. - Fr.:</strong> 9-12 Uhr u. 13-16 Uhr</span>
|
||||
</p>
|
||||
|
||||
@endif
|
||||
|
||||
</div>
|
||||
@include('web.templates._side_contact')
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue