@extends('layouts.layout-2-without') @section('content') @if($homeparty_user === null)

Auszeitparty / {{ $homeparty->name }} - {{ $homeparty->date }}

@if(Session::has('alert-save'))
{{__('saved')}}: Deine Daten erfolgreich wurden angelegt. Viel Spaß bei der Auszeitparty!
@endif

@if($homeparty_host) @if($homeparty_host->billing_salutation === 'mr') Dein Gastgeber @else Deine Gastgeberin @endif @endif

@if($homeparty_host) {{$homeparty_host->billing_firstname}} {{$homeparty_host->billing_lastname}} @endif
@if($homeparty_host) {{ $homeparty_host->billing_email }} @endif
@if($homeparty_host) {{ $homeparty_host->billing_phone }} @endif

Deine MIVITA Beratung

@if($mivita_member) {{ $mivita_member->account->first_name }} {{ $mivita_member->account->last_name }} @endif
@if($mivita_member) {{ $mivita_member->email }} @endif
@if($mivita_member) {{ $mivita_member->account->getPhoneNumber() }} @endif

Einladung

{{$homeparty->description}}
Datum
{{$homeparty->date}}
Veranstaltungsort
{{$homeparty->place}}
Straße / Hausnummer
@if($homeparty_host) {{ $homeparty_host->billing_address }} @endif
PLZ & Ort
@if($homeparty_host) {{ $homeparty_host->billing_zipcode }} {{ $homeparty_host->billing_city }} @endif
Land
@if($homeparty_host && $homeparty_host->billing_country) {{ $homeparty_host->billing_country->de }} @endif
@php($g_count = 1) @foreach($homeparty->homeparty_guests as $homeparty_user)
@if($homeparty_user->is_host) Gastgeber/in: @else Gast {{$g_count++}}: @endif {{$homeparty_user->billing_firstname}} {{$homeparty_user->billing_lastname}}
{{-- offen ... --}}
{{--
bearbeiten
--}}
{{--
Adresse
{{$homeparty_user->billing_address}} {{$homeparty_user->billing_zipcode}} {{$homeparty_user->city}} @if($homeparty_user->billing_country_id){{ $homeparty_user->billing_country->getLocated() }}@endif
E-Telefon
{{$homeparty_user->billing_phone}}
E-Mail
{{$homeparty_user->billing_email}}
--}}
@endforeach
  als Gast eintragen @else

Auszeitparty / {{ $homeparty->name }} - {{ $homeparty->date }}
zurück

{!! Form::open(['url' => route('homeparty', [$homeparty->token, $homeparty_user->id]), 'class' => 'form-horizontal', 'id'=>'homeparty-user-form-validation']) !!} @if(Session::has('alert-save'))
{{__('saved')}}: {{__('The changes have been saved.')}}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Eingabe Deiner persönlichen Daten für die Auszeitparty

Hinweis: Aus Datenschutzgründen werden Deine persönlichen Daten hier den anderen Teilnehmern nicht angezeigt. Nach dem Absenden können Sie auch nicht mehr bearbeitet werden. Möchtest Du nachträglich eine Änderung vornehmen, wende Dich bitte an Deinen persönlichen MIVITA Berater.


@if($homeparty_user->is_host) Gastgeber/in, @else Gast-, @endif Rechungsadresse
* {{trans('register.required_fields')}} Lieferadresse
@include('user.homeparty._edit')
 
{!! Form::close() !!} @endif @endsection