@foreach ($steps as $step_id => $step_data)
@if( isset($step_data['columns']) )
@php
$columns = $step_data['columns'];
@endphp
@include('admin.form.index')
@endif
@if( isset($step_data['include']) )
@include($step_data['include'])
@endif
@if ($step_id > 0)
@endif
@if ($step_id < count($steps) - 1 )
@endif
@endforeach