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

:message

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

:message

') !!}
{!! Form::select('type', [''=>'Select Type','1'=>'Own','2'=>'Third Party'], null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('type', '

:message

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

:message

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

:message

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

:message

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

:message

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

: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('corridor_id',['' => 'Select Corridor'] + $page_data['corridor']->toArray() , null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('corridor_id', '

:message

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

:message

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