@extends('layouts.app') @section('content')

Create New Service : {{ $customer->name }}



{!! Form::open(['url' => ['/admin/customer/service/create', $id],'class' => 'form-vertical','id'=>'myform','files' => true]) !!}
Service Records
{!! Form::select('service',['' => 'Select Service','transport'=>'Transport','logistic'=>'Logistic','warehouse'=>'Warehouse'] , null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('service', '

:message

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

:message

') !!}
{!! Form::select('type',['' => 'Select Type','import'=>'Import','export'=>'Export'] , null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('type', '

: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::submit(isset($submitButtonText) ? $submitButtonText : 'Create', ['class' => 'btn green']) !!}
{!! Form::close() !!}
@endsection