@if($label)
@endif
@if(isset($prepRow)) @endif
{!! Form::text('preparation_title['. ($prepKey ?? '') . ']', $prepRow->title ?? '', ['class' => 'form-control __preparation_title', 'size' => '2x2', 'placeholder' => 'Title']) !!}
{{ Form::select('preparation_type['. ($prepKey ?? '') . ']', ['' => '-Select-'] + preparationStepsType(), $prepRow->type ?? '', array('class' => 'form-control __preparation_type')) }}
@if(isset($prepRow->type) && $prepRow->type== 1)
@if (isset($prepRow->image))

@endif
{!! Form::file('preparation_image['. ($prepKey ?? '') . ']', ['class' => 'custom-file-upload-field __preparation_image']) !!}
@else
{!! Form::file('preparation_image[]', ['class' => 'custom-file-upload-field __preparation_image', 'disabled' => 'disabled']) !!}
@endif @if(isset($prepRow->type) && $prepRow->type == 2) @else @endif