@extends('Layouts/dashboard') @section('scripts') @endsection @section('submenu') {{-- TODO Add something here --}} @endsection @section('content') @if (isset($enquiry) && $enquiry)

{{ __('Enquiry') }}

@include('Plugins/Payment/Views/Elements/Booking/details', ['data' => $enquiry]) @endif
@if (isset($event) && $event) @if ($event->name)

@t('Event: %s', $event->name)

@else

@date($event->date)

@endif @endif
{!! Form::open([ 'data-toggle' => 'validator', 'id' => 'order-add-form' ]) !!}

@t('Order details')

@include ('Plugins/Payment/Views/Elements/Order/buyer')
@include('Plugins/Payment/Views/Elements/Order/payment')

@include('Plugins/Payment/Views/Elements/Order/products') @include('Plugins/Payment/Views/Elements/Order/total') {!! Form::submit('Submit') !!} {!! Form::close() !!}
@endsection