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

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

@if(Session::has('alert-save'))
{{__('saved')}}: {{__('The changes have been saved.')}}
@endif
@php($g_count = 1) @foreach($homeparty->homeparty_users as $homeparty_user)
{{$homeparty->description}}
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
  Neue Gast anlegen @else

Homeparty / {{ $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
Eingabe Deiner persönlichen Daten für die Homeparty

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