@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)
Neue Homeparty anlegen
@else
Homeparty verwalten
@endif
{{ Form::text('name', $homeparty->name, array('placeholder'=>__('Veranstaltungsname'), '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'=>2)) }}
  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']) !!}
Lass den Gastgeber seine Daten selber ausfüllen

Teile diesen Link mit dem Gastgeber (z.B. WhatsApp oder SMS), damit gelangt er auf eine Zielseite wo er seine Daten selber ausfüllen kann. Nutze das „Kopier-Symbol“, um den Link gleich in Deine Zwischenablage zu kopieren.


Gastgeber-, Rechungsadresse
* {{trans('register.required_fields')}} Lieferadresse
@include('user.homeparty._edit')
  zurück zur Übersicht
{!! Form::close() !!} @endif @endsection