@if(!isset($dataTypeContent->order) && $row->field == 'order')
@php
$class = get_class($dataTypeContent);
@endphp
required == 1) required @endif
@if(isset($options->min)) min="{{ $options->min }}" @endif
@if(isset($options->max)) max="{{ $options->max }}" @endif
step="{{ $options->step ?? 'any' }}"
placeholder="{{ old($row->field, $options->placeholder ?? $row->getTranslatedAttribute('display_name')) }}"
value="{{ old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? ($class::count() + 1)) }}">
@else
required == 1) required @endif
@if(isset($options->min)) min="{{ $options->min }}" @endif
@if(isset($options->max)) max="{{ $options->max }}" @endif
step="{{ $options->step ?? 'any' }}"
placeholder="{{ old($row->field, $options->placeholder ?? $row->getTranslatedAttribute('display_name')) }}"
value="{{ old($row->field, $dataTypeContent->{$row->field} ?? $options->default ?? '') }}">
@endif