@extends('layouts.auth') @section('content')
gruene-seele-logo
{{ __('Register') }}
@csrf @if($from_member_id) {!! Form::hidden('from_member_id', $from_member_id) !!} @endif
{!! Form::select('salutation', [''=>'Bitte wählen', 'mr'=>'Herr', 'ms'=>'Frau'], '', ['class' => 'form-control '.($errors->has('salutation') ? 'error is-invalid' : ''), 'required'=>false]) !!} @if ($errors->has('salutation')) {{ $errors->first('salutation') }} @endif
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password-confirm')) {{ $errors->first('password-confirm') }} @endif
@if ($errors->has('accepted_data_protection')) @endif
* {{trans('register.required_fields')}}
@endsection