@extends('layouts.master') @section('content')
@lang('descriptions.gva.participants.create')
@if (isset($event)) @if (isset($invitation)) @if (\Session::has('invitation_error')) {{ \Session::get('invitation_error') }} @endif @if ($event->max_plus_guest > 0) Begleitpersonen erfassen/bearbeiten @endif {!! Form::model($invitation, ['route' => ['update-exclusive-invitation', $event->id, $invitation->id], 'class' => 'invitation-form', 'enctype' => 'multipart/form-data', 'accept-charset' => 'UTF-8']) !!} @else {!! Form::open(['route' => ['save-exclusive-invitation', $event->id], 'class' => 'invitation-form', 'enctype' => 'multipart/form-data', 'accept-charset' => 'UTF-8']) !!} @endif
Daten eingeladene Person:
{!! Form::label('reference_id', 'Kundensatz-/Personalnummer (optional)') !!} {!! Form::text('reference_id', null, ['class' => 'form-control']) !!}
{!! Form::label('gender', 'Anrede*') !!} {!! Form::select('gender', ['Herr' => 'Herr', 'Frau' => 'Frau'], null, ['class' => 'form-control']) !!}
{!! Form::label('title', 'Titel (optional)') !!} {!! Form::text('title', null, ['class' => 'form-control']) !!}
{!! Form::label('first_name', 'Vorname*') !!} {!! Form::text('first_name', null, ['class' => 'form-control']) !!}
{!! Form::label('last_name', 'Nachname*') !!} {!! Form::text('last_name', null, ['class' => 'form-control']) !!}
{!! Form::label('street', 'Straße (optional)') !!} {!! Form::text('street', null, ['class' => 'form-control']) !!}
{!! Form::label('zipcode', 'PLZ (optional)') !!} {!! Form::text('zipcode', null, ['class' => 'form-control']) !!}
{!! Form::label('city', 'Ort (optional)') !!} {!! Form::text('city', null, ['class' => 'form-control']) !!}
{!! Form::label('email', 'E-Mailadresse*') !!} {!! Form::text('email', null, ['class' => 'form-control']) !!}
{!! Form::label('vip', 'VIP Status (optional)') !!} {!! Form::select('vip', [0 => 'Nein', 1 => 'Ja'], null, ['class' => 'form-control']) !!}
{!! Form::label('company', 'Unternehmensbezeichnung (optional)') !!} {!! Form::text('company', null, ['class' => 'form-control']) !!}
{!! Form::label('designation', 'Funktion (optional)') !!} {!! Form::text('designation', null, ['class' => 'form-control']) !!}
@if (isset($invitation) && $invitation->email_sent === 1)

Warning: Undefined variable $invitation in C:\Apache24_x64\htdocs\origin_cms\resources\views\exclusive_events\invitations\form.blade.php on line 82

Warning: Attempt to read property "attending" on null in C:\Apache24_x64\htdocs\origin_cms\resources\views\exclusive_events\invitations\form.blade.php on line 82

Warning: Undefined variable $invitation in C:\Apache24_x64\htdocs\origin_cms\resources\views\exclusive_events\invitations\form.blade.php on line 85

Warning: Attempt to read property "toc" on null in C:\Apache24_x64\htdocs\origin_cms\resources\views\exclusive_events\invitations\form.blade.php on line 85
{!! Form::label('attending', 'Teilnahme:') !!} {!! Form::select('attending', $attending_options, $attending_value, ['class' => 'form-control']) !!}
@endif
Daten persönlicher Ansprechpartner (optional):
{!! Form::label('contact_gender', 'Anrede') !!} {!! Form::select('contact_gender', ['Herr' => 'Herr', 'Frau' => 'Frau'], null, ['class' => 'form-control']) !!}
{!! Form::label('contact_title', 'Titel (optional)') !!} {!! Form::text('contact_title', null, ['class' => 'form-control']) !!}
{!! Form::label('contact_first_name', 'Vorname') !!} {!! Form::text('contact_first_name', null, ['class' => 'form-control']) !!}
{!! Form::label('contact_last_name', 'Nachname') !!} {!! Form::text('contact_last_name', null, ['class' => 'form-control']) !!}
{!! Form::label('contact_telephone', 'Telefonnummer') !!} {!! Form::text('contact_telephone', null, ['class' => 'form-control']) !!}
{!! Form::label('contact_department', 'Abteilung (optional)') !!} {!! Form::text('contact_department', null, ['class' => 'form-control']) !!}
{!! Form::label('contact_designation', 'Funktion (optional)') !!} {!! Form::text('contact_designation', null, ['class' => 'form-control']) !!}
{!! Form::label('contact_email', 'E-Mailadresse') !!} {!! Form::text('contact_email', null, ['class' => 'form-control']) !!}
{!! Form::checkbox('goto_plus_guests', 1, null, ['id' => 'goto-plus-guests', 'class' => 'hidden']) !!} {!! Form::checkbox('send_email', 1, null, ['id' => 'send-email', 'class' => 'hidden']) !!} @if (!isset($invitation) && $event->max_plus_guest > 0)
Speichern & Begleitpersonen erfassen
@else @endif @if (!isset($invitation) || ($invitation->via_csv === 0 && $invitation->email_sent === 0))
Einladung versenden
@endif
{!! Form::close() !!} @endif
@if ($event->max_plus_guest > 0) @endif @endsection @section('back_button') @if($event) Zurück @else Zurück @endif @endsection