@foreach ($columns as $colInput)
@if (!$colInput->exists('disableEdit'))
@if ($colInput->getType() == "text")
@include('ATCore::atplus_crud.forms.input_text',['type' => 'edit', 'label' => $colInput->getLabel(), 'input_name' => $colInput->getId(),'required' => $colInput->exists('required'),'input_mask' => $colInput->exists('input_mask'), 'readOnlyEdit' => $colInput->exists('readOnlyEdit'), 'enableRUTCheck' => $colInput->exists('enableRUTCheck'), 'maxLength' => $colInput->exists('maxLength')])
@elseif ($colInput->getType() == "select_table")
@include('ATCore::atplus_crud.forms.select_table',['type' => 'edit', 'label' => $colInput->getLabel(), 'input_name' => $colInput->getId(),'required' => $colInput->exists('required'), 'select_model' => $colInput->exists('select_model'), 'select_option_value' => $colInput->exists('select_option_value'), 'select_option_value_2' => $colInput->exists('select_option_value_2'), 'select_option_filter_name' => $colInput->exists('select_option_filter_name'),'select_option_filter_value' => $colInput->exists('select_option_filter_value'), 'parent_select' => $colInput->exists('parent_select'), 'api_route' => $colInput->exists('api_route'), 'readOnlyEdit' => $colInput->exists('readOnlyEdit'), 'order_by' => $colInput->exists('order_by')])
@elseif ($colInput->getType() == "date")
@include('ATCore::atplus_crud.forms.input_date',['type' => 'edit', 'label' => $colInput->getLabel(), 'input_name' => $colInput->getId(),'required' => $colInput->exists('required'), 'time_picker' => $colInput->exists('time_picker'), 'readOnlyEdit' => $colInput->exists('readOnlyEdit')])
@elseif ($colInput->getType() == "select_options")
@include('ATCore::atplus_crud.forms.select_options',['type' => 'edit', 'label' => $colInput->getLabel(), 'input_name' => $colInput->getId(),'required' => $colInput->exists('required'), 'options' => $colInput->exists('options'), 'readOnlyEdit' => $colInput->exists('readOnlyEdit')])
@elseif ($colInput->getType() == "text_area")
@include('ATCore::atplus_crud.forms.textarea',['type' => 'edit', 'label' => $colInput->getLabel(), 'input_name' => $colInput->getId(),'required' => $colInput->exists('required'), 'options' => $colInput->exists('options'), 'readOnlyEdit' => $colInput->exists('readOnlyEdit')])
@elseif ($colInput->getType() == "file")
@include('ATCore::atplus_crud.forms.input_file',['type' => 'edit','label' => $colInput->getLabel(), 'input_name' => $colInput->getId(),'required' => $colInput->exists('required'), 'options' => $colInput->exists('options'), 'readOnlyEdit' => $colInput->exists('readOnlyEdit')])
@elseif ($colInput->getType() == "hidden")
@endif
@endif
@endforeach