{!! Form::label('data[start_date]', t('From')) !!} {!! Form::text( 'data[start_date]', null, [ 'data-error' => t('This field is required'), 'class' => 'form-control datepicker required', 'required' ] ) !!}
{!! Form::label('data[end_date]', t('Until')) !!} {!! Form::text( 'data[end_date]', null, [ 'data-error' => t('This field is required'), 'class' => 'form-control datepicker required', 'required' ] ) !!}
{!! Form::label('data[start_time]', t('Start Time')) !!} {!! Form::select( 'data[start_time]', array_merge(['' => t('Start time')], times()), null, [ 'data-error' => t('This field is required'), 'class' => 'form-control required' ] ) !!}
{!! Form::label('data[end_time]', t('End Time')) !!} {!! Form::select( 'data[end_time]', array_merge(['' => t('End time')], times()), null, [ 'data-error' => t('This field is required'), 'class' => 'form-control required' ] ) !!}
Pricing periods can take up to 2 hours to update