{{ Form::label_title(isset($title) ? $title : "Functionality") }}
{{ Form::separator_row('grey-divider thin-divider design-plan-remove-separator-row') }} @if (isset($other_title))
{{ Form::label_title($other_title, \App\Helpers\FormComponentHelper::SIZE_LARGE) }}
@endif
@for($i = 0; $i < sizeof($all_website_functionality)/2; $i++)
{{ Form::checkbox_row($all_website_functionality[$i]['field_name'], $data[$all_website_functionality[$i]['field_name']], $all_website_functionality[$i]['field_label']) }}
@endfor
@for($i = sizeof($all_website_functionality)/2; $i < sizeof($all_website_functionality); $i++)
{{ Form::checkbox_row($all_website_functionality[$i]['field_name'], $data[$all_website_functionality[$i]['field_name']], $all_website_functionality[$i]['field_label']) }}
@endfor
{{ Form::label_title("Other") }}
{{ Form::textarea_ex('other_functionality', $data->other_functionality) }}