@extends('layouts.master') @section('content')
@lang('descriptions.gva.participants.create')
@if (\Session::has('max_limit')) {{ \Session::get('max_limit') }} @endif @if (isset($event) && isset($invitation)) @if (isset($plus_guest)) {!! Form::model($plus_guest, ['route' => ['update-exclusive-plus-guest', $event->id, $invitation->id, $plus_guest->id], 'enctype' => 'multipart/form-data', 'accept-charset' => 'UTF-8']) !!} @else {!! Form::open(['route' => ['save-exclusive-plus-guest', $event->id, $invitation->id], '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('company', 'Unternehmensbezeichnung (optional)') !!} {!! Form::text('company', null, ['class' => 'form-control']) !!}
{!! Form::label('designation', 'Funktion (optional)') !!} {!! Form::text('designation', null, ['class' => 'form-control']) !!}
{!! Form::close() !!} @endif
@endsection @section('back_button') @if (isset($event) && isset($invitation)) Zurück @else Zurück @endif @endsection