{{Form::select('selection[Name]', $columns,(isset($attrselection->Name)?$attrselection->Name:''),array("class"=>"select2 small"))}}
{{Form::select('selection[Code]', $columns,(isset($attrselection->Code)?$attrselection->Code:''),array("class"=>"select2 small"))}}
{{Form::select('selection[Description]', $columns,(isset($attrselection->Description)?$attrselection->Description:''),array("class"=>"select2 small"))}}
{{Form::select('selection[Amount]', $columns,(isset($attrselection->Amount)?$attrselection->Amount:''),array("class"=>"select2 small"))}}
{{Form::select('selection[Action]', $columns,(isset($attrselection->Action)?$attrselection->Action:''),array("class"=>"select2 small"))}}
{{Form::select('selection[Note]', $columns,(isset($attrselection->Note)?$attrselection->Note:''),array("class"=>"select2 small"))}}
@if (isset($DynamicFields) && $DynamicFields['totalfields'] > 0) @foreach($DynamicFields['fields'] as $field) @if($field->Status == 1) @if($l%2 != 0)
@endif
{{Form::select('selection[DynamicFields-'.$field->DynamicFieldsID.']', $columns,(isset($attrselection->$DynamicField)?$attrselection->$DynamicField:''),array("class"=>"select2 small"))}}
@endif @endforeach @endif