@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') @section('content')

{{ trans('register.reg_hl') }}

{{ trans('register.reg_line_1') }}

{!! Form::open(['url' => '/registrierung']) !!} @if(isset($from_member_id)) {!! Form::hidden('from_member_id', $from_member_id) !!} @endif
* {{trans('register.required_fields')}}
{!! Form::label('salutation', __('Salutation').'*') !!} {!! Form::select('salutation', [''=>'Bitte wählen', 'mr'=>'Herr', 'ms'=>'Frau'], '', ['class' => 'form-control '.($errors->has('salutation') ? 'error is-invalid' : '')]) !!} @if ($errors->has('salutation'))
{{ $errors->first('salutation') }}
@endif
{!! Form::label('first_name', __('First name').'*') !!} {!! Form::text('first_name', '', ['class' => 'form-control '.($errors->has('first_name') ? 'error is-invalid' : ''), 'placeholder'=>__('First name'), '']) !!} @if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
{!! Form::label('last_name', __('Last name').'*') !!} {!! Form::text('last_name', '', ['class' => 'form-control '.($errors->has('last_name') ? 'error is-invalid' : ''), 'placeholder'=>__('Last name'), '']) !!} @if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif

{!! Form::label('email', __('E-Mail Address').'*') !!} {!! Form::email('email', '', ['class' => 'form-control '.($errors->has('email') ? 'error is-invalid' : ''), 'placeholder'=>__('E-Mail Address'), '']) !!} @if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{!! Form::label('email-confirm', __('Confirm E-Mail Address').'*') !!} {!! Form::email('email-confirm', '', ['class' => 'form-control '.($errors->has('email-confirm') ? 'error is-invalid' : ''), 'placeholder'=>__('Confirm E-Mail Address'), '']) !!} @if ($errors->has('email-confirm'))
{{ $errors->first('email-confirm') }}
@endif

{!! Form::label('password', __('Password').'*') !!} {!! Form::password('password', ['class' => 'form-control '.($errors->has('password') ? 'error is-invalid' : ''), 'placeholder'=>__('Password'), '']) !!} @if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
{!! Form::label('password_confirmation', __('Confirm Password').'*') !!} {!! Form::password('password_confirmation', ['class' => 'form-control '.($errors->has('password_confirmation') ? 'error is-invalid' : ''), 'placeholder'=>__('Confirm Password'), '']) !!} @if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif

@if ($errors->has('accepted_data_protection'))
{{ $errors->first('accepted_data_protection') }}
@endif
@if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
{!! Form::close() !!}
@if($user_shop)

Kontakt

Ich freue mich über Deinen Besuch in meinem MIVITA Onlineshop. Ich bin Deine persönliche Beratung rund um die Produkte und ihrer Anwendung.

@if($user_shop->isImage()) @else @endif

@if($user_shop->title) {{ $user_shop->title }}
@endif @if($user_shop->contact) {!! nl2br($user_shop->contact) !!} @endif
{{ $user_shop->getSubdomain(true) }}

@if($user_shop->accessibility)

Meine Erreichbarkeit:
{!! nl2br($user_shop->accessibility) !!}

@endif @else

Kontakt


Adresse:
mivita e.K.
Leinfeld 2
87755 Kirchhaslach
Telefon: 0 8333 946 17 67 Email: info@mivita.care


Geschäftszeiten

Mo. - Fr.: 9-12 Uhr u. 13-16 Uhr

@endif
@endsection