@if (isset($banner) && $banner)
{{ $banner }}
@endif
{!! Form::label('currency_id', t('Order Currency')) !!} {!! Form::select( 'currency_id', $currencies, ( isset($settings->currency_id) ? $settings->currency_id : (isset($data->currency_id) ? $data->currency_id : null) ) ) !!}
{!! Form::radio( 'type', 'date', ( isset($data->type) && $data->type == 'date' ? true : ( isset($settings->content->pos_manual_bookings) && $settings->content->pos_manual_bookings ? false : true ) ) ) !!}
{!! Form::radio( 'type', 'date-time', ( isset($data->type) && $data->type == 'date-time' ? true : ( isset($settings->content->pos_manual_bookings) && $settings->content->pos_manual_bookings ? true : false) ) ) !!}
{!! Form::radio( 'type', 'range', ( isset($data->type) && $data->type == 'range' ? true : false ) ) !!}

@if ( isset($settings->content->pos_manual_bookings) && $settings->content->pos_manual_bookings && isset($settings->content->allow_unfiltered_categories) && $settings->content->allow_unfiltered_categories )
{!! Form::label('all', __('Filter?')) !!} {!! Form::select( 'all', [ 0 => __('Show only relevant categories'), 1 => __('Show all categories') ], null, [ 'class' => 'form-control' ] ) !!}
@endif @if (isset($user) && $user) @endif