@if(isset($is_edit))
{{ Form::label_title('Edit Date: ' . $checkin_date->no_time_date, \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }}
@else
{{ Form::label_title('Add Date', \App\Helpers\FormComponentHelper::SIZE_EXLARGE) }}
@endif
{{ Form::label_title("Date") }}
{{ Form::date_ex('checkin_date', $checkin_date->key_date, 4, 'checkin_date') }}
@if(!empty($checkin_date->change_note))
{{ Form::label_title("Change Note") }}
{{ Form::text_ex('change_note', $checkin_date->change_note, 5, 'change_note') }} {{ Form::hidden('date_changed', 1, ['id' => 'date_changed']) }}
@else @endif
{{ Form::label_title("Description") }}
{{ Form::textarea_ex('date_description', $checkin_date->description, 8, null, 'date_description') }}
@if(isset($is_edit)) {{ Form::button_tiny("Save", "date_list_manager.post_update( '". $checkin_date->update_url ."', '". $checkin_date->view_url ."', date_selector.calc_handle_id('". $checkin_date->checkin_date ."'));", 'save_date_btn', null, true) }} {{ Form::button_tiny("Cancel", "date_list_manager.get_one( '". $checkin_date->view_url ."', date_selector.calc_handle_id('". $checkin_date->checkin_date ."'), show_add_date_btn());") }} @else {{ Form::button_tiny("Save", "date_list_manager.post_insert( '". $checkin_meeting->store_checkin_date_url ."', 'date_wrapper_XXX', '". $checkin_date->calc_view_url($checkin_meeting->business,'XXX') ."', date_selector.calc_handle_id('XXX'));", 'save_date_btn', null, true) }} {{ Form::button_tiny("Cancel", "date_list_manager.cancel_one( 'date_handle_XXX' ); $('#date_handle_XXX').hide();") }} @endif