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

Create New Charge : {{ $corridor->origin }} - {{ $corridor->destination }} - {{ $corridor->border }}



{!! Form::open(['url' => ['/admin/corridor/charge/create', $id],'class' => 'form-vertical','id'=>'myform','files' => true]) !!}
Charge Records
{!! Form::select('charge_id',['' => 'Select Charge'] + $page_data['charge']->toArray() , null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('charge_id', '

:message

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

:message

') !!}
{!! Form::select('currency',[""=>"Select Currency","USD"=>"USD","MZM"=>"MZM","ZAR"=>"ZAR"],null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('currency', '

:message

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

:message

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