@t('Quick Order Settings')

{!! Form::label( 'data[Settings][content][quick_order_product_id]', t('Product ID - One click product add')) !!} {!! Form::text( 'data[Settings][content][quick_order_product_id]', ( isset($data->Settings->content->quick_order_product_id) ? $data->Settings->content->quick_order_product_id : null ) ) !!}

@t('Add the Product ID which would be used for quick order (one button click). Add the Booking Type Product ID rather the product from the event')

{!! Form::label('data[Settings][content][quick_order_email]', t('Email Address')) !!} {!! Form::text( 'data[Settings][content][quick_order_email]', ( isset($data->Settings->content->quick_order_email) ? $data->Settings->content->quick_order_email : null ) ) !!}

@t('This email will be used for the user of the quick orders')

{!! Form::label( 'data[Settings][content][quick_reservation_product_id]', t('Product ID - Booking Management Blocking resources')) !!} {!! Form::text( 'data[Settings][content][quick_reservation_product_id]', ( isset($data->Settings->content->quick_reservation_product_id) ? $data->Settings->content->quick_reservation_product_id : null ) ) !!}

@t('Add the Product IDs (comma separated) which would be used to create order and block all the lanes in case the venue or a zone is reserved for private party.')

@t('Add the Booking Type Product ID rather the product from the event.')

@t('If there are multiple comma separated products, set the first one as generic one which would be used for Private Hire and the other could be a zone specific. If Quick order is allowed, then the product from the respective zone would be used.')

{!! Form::hidden( 'data[Settings][content][show_quick_orders]', 0 ) !!} {!! Form::checkbox( 'data[Settings][content][show_quick_orders]', 1, ( isset($data->Settings->content->show_quick_orders) && $data->Settings->content->show_quick_orders ? true : false ) ) !!} {!! Form::label( 'data[Settings][content][show_quick_orders]', 'Quick Orders in the Bookings Manager' ) !!}