{!! Form::open(['route' => 'admin::shipments::dimensions::post', 'class' => 'form-horizontal', 'id' => 'new_dimension']) !!}
{!! Form::label('name', trans('Shipments::admin/dimensions/forms/new.labels.name') . ':') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => trans('Shipments::admin/dimensions/forms/new.inputs.placeholders.name')]) !!}
{!! Form::label('width', trans('Shipments::admin/dimensions/forms/new.labels.width') . ':') !!}
{!! Form::number('width', null, ['step' => '0.1', 'min' => 0, 'class' => 'form-control', 'placeholder' => trans('Shipments::admin/dimensions/forms/new.inputs.placeholders.width')]) !!}
{!! Form::label('height', trans('Shipments::admin/dimensions/forms/new.labels.height') . ':') !!}
{!! Form::number('height', null, ['step' => '0.1', 'min' => 0, 'class' => 'form-control', 'placeholder' => trans('Shipments::admin/dimensions/forms/new.inputs.placeholders.height')]) !!}
{!! Form::label('depth', trans('Shipments::admin/dimensions/forms/new.labels.depth') . ':') !!}
{!! Form::number('depth', null, ['step' => '0.1', 'min' => 0, 'class' => 'form-control', 'placeholder' => trans('Shipments::admin/dimensions/forms/new.inputs.placeholders.depth')]) !!}
{!! Form::label('weight', trans('Shipments::admin/dimensions/forms/new.labels.weight') . ':') !!}
{!! Form::number('weight', null, ['step' => '0.01', 'min' => 0, 'class' => 'form-control', 'placeholder' => trans('Shipments::admin/dimensions/forms/new.inputs.placeholders.weight')]) !!}
{!! Form::label('default', trans('Shipments::admin/dimensions/forms/new.labels.default') . ':', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::checkbox('default', 1, null, ['checked' => 'checked', 'id' => 'default']) !!} {!! Form::label('default', ' ') !!}
{!! Form::button(trans('global.add'), ['type' => 'submit', 'id' => 'add_new_dimension_submit', 'class' => 'btn btn-wide btn-success ladda-button', 'data-style' => 'slide-up']) !!}
{!! Form::close() !!} @if ($defaultExists) @push('footScripts') @endpush @endif