@include('ManageEvent.Partials.EditEventForm', ['event'=>$event, 'organisers'=>\Auth::user()->account->organisers])
The following short codes are available for use:
Display the event's public URL: [event_url]
Display the organiser's name: [organiser_name]
Display the event title: [event_title]
Display the event description: [event_description]
Display the event start date & time: [event_start_date]
Display the event end date & time: [event_end_date]
{!! Form::model($event, array('url' => route('postEditEventSocial', ['event_id' => $event->id]), 'class' => 'ajax ')) !!}
Social Settings
{!! Form::close() !!}
{!! Form::model($event, array('url' => route('postEditEventFees', ['event_id' => $event->id]), 'class' => 'ajax')) !!}
Organiser Fees
These are optional fees you can include in the cost of each ticket. This charge will appear on
buyer's invoices as 'BOOKING FEES'.
{!! Form::close() !!}
Social Settings
{!! Form::label('event_page_show_social_share', 'Show social share buttons?', array('class'=>'control-label')) !!}
{!! Form::checkbox('event_page_show_social_share', 1, false) !!}
{!! Form::model($event, array('url' => route('postEditEventOrderPage', ['event_id' => $event->id]), 'class' => 'ajax ')) !!}
Order Page Settings
Attendees questions
@if ($questions)
@foreach ($questions as $question)
| {{ $question->title }} |
@endforeach
@endif
{!! Form::close() !!}
The following short codes are available for use:
Display the event's public URL:[event_url]Display the organiser's name:
[organiser_name]Display the event title:
[event_title]Display the event description:
[event_description]Display the event start date & time:
[event_start_date]Display the event end date & time:
[event_end_date]Social Settings