{!! Form::open(['method' => 'POST', 'route' => ['admin.freight.options.store']]) !!}

Create Freight Option

{!! Form::text('name', old('name'), ['class' => 'form-control', 'required' => true]) !!} {!! Form::label('name', 'Name', ['class' => 'floating-label main-label']) !!}

@if($errors->has('name'))

{{ $errors->first('name') }}

@endif
{!! Form::number('price', old('price'), ['class' => 'form-control', 'step' =>'0.01', 'required' => true]) !!} {!! Form::label('price', 'Price', ['class' => 'floating-label main-label']) !!}

@if($errors->has('price'))

{{ $errors->first('price') }}

@endif
{!! Form::button(trans('global.app_save'), ['class' => 'btn btn-info', 'type' => 'submit']) !!} {!! Form::close() !!}