@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') @section('content') {{ trans('register.reg_hl') }} {{ trans('register.reg_line_1') }} {!! Form::open(['action' => '/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', [''=>__('please select'), 'mr'=>__('MR'), 'ms'=>__('MS')], '', ['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 {!! Form::checkbox('accepted_data_protection', 1, false, ['id'=>'accepted_data_protection', 'class' => 'form-control '.($errors->has('accepted_data_protection') ? 'error' : ''), '']) !!} {!! trans('register.reg_checked', ['link' => url('datenschutz')]) !!} .* @if ($errors->has('accepted_data_protection')) {{ $errors->first('accepted_data_protection') }} @endif @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif {{ __('website.register_now') }} {!! Form::close() !!} @include('web.templates._side_contact') @endsection
{{ trans('register.reg_line_1') }}