@extends('layouts.layout-2') @section('content')

{{ __('navigation.my_homeparty') }} / @if(!$homeparty->id) anlegen @else {{ __('navigation.manage') }} @endif
zurück

{!! Form::open(['url' => route('user_homeparty_detail', [$homeparty->id]), 'class' => 'form-horizontal', 'id'=>'homeparty-party-form-validation']) !!}
@if(!$homeparty->id)
* {{trans('register.required_fields')}} Neue Auszeitparty anlegen
@else
Homeparty verwalten
@endif
{{ Form::text('name', $homeparty->name, array('placeholder'=>__('Gastgeber / Veranstalter'), 'class'=>'form-control', 'required')) }} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{ Form::text('date', $homeparty->date, array('placeholder'=>Util::formatDate(), 'data-date-format'=>Util::formatDate(), 'data-start_view'=>2, 'class'=>'form-control datepicker-base', 'required')) }} @if ($errors->has('date')) {{ $errors->first('date') }} @endif
{{ Form::text('place', $homeparty->place, array('placeholder'=>__('Veranstaltungsort'), 'class'=>'form-control', 'required')) }} @if ($errors->has('place')) {{ $errors->first('place') }} @endif
{{ Form::textarea('description', $homeparty->description , array('placeholder'=>__('Beschreibung'), 'class'=>'form-control', 'rows'=>5)) }}
  zurück zur Übersicht
{!! Form::close() !!} @if($homeparty->id) {!! Form::open(['url' => route('user_homeparty_detail', [$homeparty->id]), 'class' => 'form-horizontal', 'id'=>'homeparty-user-form-validation']) !!}
Gastgeber-, Rechungsadresse
* {{trans('register.required_fields')}} Lieferadresse
@include('user.homeparty._edit')
  zurück zur Übersicht
{!! Form::close() !!}

Teile diesen Link mit den Gästen (z.B. WhatsApp oder SMS), damit gelangt sie auf eine Zielseite wo sie ihre Daten selber ausfüllen können. Nutze das „Kopier-Symbol“, um den Link gleich in Deine Zwischenablage zu kopieren.

@endif @endsection