@extends($layout) @section('header_scripts') @stop @section('content')
@include('errors.errors')

{{getPhrase('select_details')}}

{!! Form::open(array('url' => URL_STORE_TRANSPORT_FEE_TYPE, 'method' => 'POST', 'name'=>'formQuiz ', 'novalidate'=>'')) !!}
{{ Form::label('route_id', getphrase('route')) }} * {{Form::select('route_id', $routes_list, null, ['class'=>'form-control', 'id'=>'route_id', 'placeholder'=>'Select', 'ng-model'=>'route_id', 'required'=> 'true', 'ng-class'=>'{"has-error": formQuiz.route_id.$touched && formQuiz.route_id.$invalid}' ])}}
{!! getValidationMessage()!!}
{{ Form::label('title', getphrase('fee_title')) }} * {{ Form::text('title', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('title'), 'ng-model'=>'title', 'required'=> 'true', 'ng-class'=>'{"has-error": formQuiz.title.$touched && formQuiz.title.$invalid}', )) }}
{!! getValidationMessage()!!}
{{ Form::label('year', getphrase('year')) }} * {{Form::select('year', $years, null, ['class'=>'form-control', 'id'=>'year', 'placeholder'=>'Select', 'ng-model'=>'year', 'required'=> 'true', 'ng-class'=>'{"has-error": formQuiz.year.$touched && formQuiz.year.$invalid}' ])}}
{!! getValidationMessage()!!}
{{ Form::label('month', getphrase('month')) }} * {{Form::select('month', $months, null, ['class'=>'form-control', 'id'=>'month', 'placeholder'=>'Select', 'ng-model'=>'month', 'required'=> 'true', 'ng-class'=>'{"has-error": formQuiz.month.$touched && formQuiz.month.$invalid}' ])}}
{!! getValidationMessage()!!}
{{ Form::label('start_date', getphrase('start_date')) }} {{ Form::text('start_date', $value = $date_from , $attributes = array('class'=>'input-sm form-control', 'placeholder' => '2015/7/17')) }}
{{ Form::label('end_date', getphrase('end_date')) }} {{ Form::text('end_date', $value = $date_to , $attributes = array('class'=>'input-sm form-control', 'placeholder' => '2015/7/17')) }}
{!! Form::close() !!}
@stop @section('footer_scripts') @include('common.angular-factory') @stop