{{ Form::label_title("Title") }}
{{ Form::text_ex('checkin_todo_title', $checkin_todo->title, 8, 'checkin_todo_title') }}
{{ Form::label_title("Description") }}
{{ Form::textarea_ex('checkin_todo_description', $checkin_todo->description, 8, null, 'checkin_todo_description') }}
{{ Form::label_title("Link") }}
{{ Form::text_ex('checkin_todo_link', $checkin_todo->link, 8, 'checkin_todo_link') }}
{{ Form::label_title("Assign To") }}
{{ Form::select_ex('checkin_todo_assigned_user', $checkin_todo->assigned_user, $checkin_meeting->assign_users, 4, null, null, 'checkin_todo_assigned_user', 'Select') }}
{{ Form::checkbox_ex('checkin_todo_is_complete', $checkin_todo->is_complete ? $checkin_todo->is_complete : 0, 'Completed') }}
@if(isset($is_edit)) {{ Form::button_tiny("Save", "todo_list_manager.post_update( '".$checkin_todo->update_url."', '".$checkin_todo->view_url."', todo_selector.calc_handle_id('". $checkin_todo->checkin_todo ."'));", 'save_todo_btn', null, true) }} {{ Form::button_tiny("Cancel", "todo_list_manager.get_one( '". $checkin_todo->view_url ."', todo_selector.calc_handle_id('". $checkin_todo->checkin_todo ."'), show_add_todo_btn());") }} @else {{ Form::button_tiny("Save", "todo_list_manager.post_insert( '". $checkin_meeting->store_checkin_todo_url ."', 'todo_wrapper_XXX', '". $checkin_todo->calc_view_url($checkin_meeting->business,'XXX') ."', todo_selector.calc_handle_id('XXX'));", 'save_todo_btn', null, true) }} {{ Form::button_tiny("Cancel", "todo_list_manager.cancel_one( 'todo_handle_XXX' ); $('#todo_handle_XXX').hide();") }} @endif