{{-- @todo Rewrite the JS for choosing event bg images and colours. --}} @extends('Shared.Layouts.Master') @section('title') @parent Customize Event @stop @section('top_nav') @include('ManageEvent.Partials.TopNav') @stop @section('menu') @include('ManageEvent.Partials.Sidebar') @stop @section('page_title') Customize Event @stop @section('page_header') @stop @section('head') {!! HTML::script('https://maps.googleapis.com/maps/api/js?sensor=false&libraries=places') !!} {!! HTML::script('vendor/geocomplete/jquery.geocomplete.min.js') !!} @stop @section('content')
@include('ManageEvent.Partials.EditEventForm', ['event'=>$event, 'organisers'=>\Auth::user()->account->organisers])

Affiliate Tracking

Keeping track of who is generating sales for your event is extremely easy. Simply create a referral link using the box below and share the link with your affiliates / event promoters.

@if($event->affiliates->count())
@foreach($event->affiliates as $affiliate) @endforeach
Affiliate Name Visits Generated Ticket Sales Generated Sales Volume Generated Last Referral
{{ $affiliate->name }} {{ $affiliate->visits }} {{ $affiliate->tickets_sold }} {{ money($affiliate->sales_volume, $event->currency->code) }} {{ $affiliate->updated_at->format('M dS H:i A') }}
@else
No affiliate referrals yet.
@endif
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::label('social_share_text', 'Social Share Text', array('class'=>'control-label ')) !!} {!! Form::textarea('social_share_text', $event->social_share_text, [ 'class' => 'form-control', 'rows' => 4 ]) !!}
This is the text which will be share by default when a user shares your event on social networks

{!! Form::checkbox('social_show_facebook', 1, $event->social_show_facebook, ['data-toggle' => 'toggle']) !!} {!! Form::label('social_show_facebook', 'Facebook') !!}
{!! Form::checkbox('social_show_twitter', 1, $event->social_show_twitter, ['data-toggle' => 'toggle']) !!} {!! Form::label('social_show_twitter', 'Twitter') !!}
{!! Form::checkbox('social_show_email', 1, $event->social_show_email, ['data-toggle' => 'toggle']) !!} {!! Form::label('social_show_email', 'Email') !!}
{!! Form::checkbox('social_show_googleplus', 1, $event->social_show_googleplus, ['data-toggle' => 'toggle']) !!} {!! Form::label('social_show_googleplus', 'Google+') !!}
{!! Form::checkbox('social_show_linkedin', 1, $event->social_show_linkedin, ['data-toggle' => 'toggle']) !!} {!! Form::label('social_show_linkedin', 'LinkedIn') !!}
{!! Form::checkbox('social_show_whatsapp', 1, $event->social_show_whatsapp, ['data-toggle' => 'toggle']) !!} {!! Form::label('social_show_whatsapp', 'WhatsApp') !!}
{!! Form::close() !!}
{!! Form::open(array('url' => route('postEditEventDesign', ['event_id' => $event->id]), 'files'=> true, 'class' => 'ajax customizeForm')) !!} {!! Form::hidden('bg_type', $event->bg_type) !!}

Background Options

{!! Form::text('bg_color', $event->bg_color, ['class' => 'colorpicker form-control']) !!}
@foreach($available_bg_images_thumbs as $bg_image) @endforeach {!! Form::hidden('bg_image_path_custom', ($event->bg_type == 'image') ? $event->bg_image_path : '') !!}
Images Provided By PixaBay.com
{!! Form::close() !!}

Event Page Preview

{!! 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::label('organiser_fee_percentage', 'Service Fee Percentage', array('class'=>'control-label required')) !!} {!! Form::text('organiser_fee_percentage', $event->organiser_fee_percentage, [ 'class' => 'form-control', 'placeholder' => '0' ]) !!}
e.g: enter 3.5 for 3.5%
{!! Form::label('organiser_fee_fixed', 'Service Fee Fixed Price', array('class'=>'control-label required')) !!} {!! Form::text('organiser_fee_fixed', null, [ 'class' => 'form-control', 'placeholder' => '0.00' ]) !!}
e.g: enter 1.25 for {{$event->currency_symbol}}1.25
{!! Form::close() !!}

Social Settings

{!! Form::label('event_page_show_map', 'Show map on event page?', array('id' => 'customcheckbox', 'class'=>'control-label')) !!} {!! Form::checkbox('event_page_show_map', 1, false) !!}
{!! 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

{!! Form::label('pre_order_display_message', 'Message to display to attendees before they complete their order.', array('class'=>'control-label ')) !!} {!! Form::textarea('pre_order_display_message', $event->pre_order_display_message, [ 'class' => 'form-control', 'rows' => 4 ]) !!}
This message will be displayed to attendees immediately before they finalize their order.
{!! Form::label('post_order_display_message', 'Message to display to attendees before after they have completed their order.', array('class'=>'control-label ')) !!} {!! Form::textarea('post_order_display_message', $event->post_order_display_message, [ 'class' => 'form-control', 'rows' => 4 ]) !!}
This message will be displayed to attendees once they have successfully completed the checkout process.

Offline Payment Settings

enable_offline_payments ? 'checked="checked"' : '' }} data-toggle="toggle" id="enable_offline_payments" name="enable_offline_payments" type="checkbox" value="1">
{!! Form::close() !!}
{!! Form::model($event, array('url' => route('postEditEventTicketDesign', ['event_id' => $event->id]), 'class' => 'ajax ')) !!}

Ticket Design

{!! Form::label('ticket_border_color', 'Ticket Border Color', ['class'=>'control-label required ']) !!} {!! Form::input('text', 'ticket_border_color', Input::old('ticket_border_color'), [ 'class'=>'form-control colorpicker', 'placeholder'=>'#000000' ]) !!}
{!! Form::label('ticket_bg_color', 'Ticket Background Color', ['class'=>'control-label required ']) !!} {!! Form::input('text', 'ticket_bg_color', Input::old('ticket_bg_color'), [ 'class'=>'form-control colorpicker', 'placeholder'=>'#FFFFFF' ]) !!}
{!! Form::label('ticket_text_color', 'Ticket Text Color', ['class'=>'control-label required ']) !!} {!! Form::input('text', 'ticket_text_color', Input::old('ticket_text_color'), [ 'class'=>'form-control colorpicker', 'placeholder'=>'#000000' ]) !!}
{!! Form::label('ticket_sub_text_color', 'Ticket Sub Text Color', ['class'=>'control-label required ']) !!} {!! Form::input('text', 'ticket_sub_text_color', Input::old('ticket_border_color'), [ 'class'=>'form-control colorpicker', 'placeholder'=>'#000000' ]) !!}
{!! Form::label('is_1d_barcode_enabled', 'Show 1D barcode on tickets', ['class' => 'control-label required']) !!} {!! Form::select('is_1d_barcode_enabled', [1 => 'Yes', 0 => 'No'], $event->is_1d_barcode_enabled, ['class'=>'form-control']) !!}

Ticket Preview

@include('ManageEvent.Partials.TicketDesignPreview')
{!! Form::close() !!}
@stop