@if(Session::has('success'))
{{Session::get('success')}}
@endif
@if(Session::has('errors'))
{!! Lang::get('lang.alert') !!}!
@if($errors->first('name'))
{!! $errors->first('name', ':message') !!}
@endif
@if($errors->first('display_order'))
{!! $errors->first('display_order', ':message') !!}
@endif
@if($errors->first('rating_scale'))
{!! $errors->first('rating_scale', ':message') !!}
@endif
@if($errors->first('rating_area'))
{!! $errors->first('rating_area', ':message') !!}
@endif
@if($errors->first('restrict'))
{!! $errors->first('restrict', ':message') !!}
@endif
@if($errors->first('allow_modification'))
{!! $errors->first('allow_modification', ':message') !!}
@endif
@endif
{!! Form::label('name',Lang::get('lang.rating_label')) !!}*
{!! Form::text('name',null,['class' => 'form-control']) !!}
{!! Form::label('display_order',Lang::get('lang.display_order')) !!}*
{!! Form::text('display_order',null,['class' => 'form-control']) !!}
{!! Form::label('rating_area',Lang::get('lang.rating_area')) !!}*
{!! Form::select('rating_area',['Helpdesk Area' => 'Helpdesk Area','Comment Area'=>'Comment Area'],null,['class' => 'form-control']) !!}