Shipping Line Records
{!! Form::text('name', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('name', '

:message

') !!}
{!! Form::select('port_id',['' => 'Select Port'] + $page_data['port']->toArray() , null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('port_id', '

:message

') !!}
{!! Form::text('import_days', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('import_days', '

:message

') !!}
{!! Form::text('export_days', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('export_days', '

:message

') !!}
{!! Form::text('domestic', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('domestic', '

:message

') !!}
{!! Form::text('validity_from', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('validity_from', '

:message

') !!}
{!! Form::text('validity_to', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('validity_to', '

:message

') !!}
{!! Form::select('status', ['Inactive', 'Active'], null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('status', '

:message

') !!}
{!! Form::submit(isset($submitButtonText) ? $submitButtonText : 'Create', ['class' => 'btn green']) !!}