{{ Form::label('title', getphrase('title')) }} * {{ Form::text('title', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Plan Title')) }}
{{ Form::label('name', getphrase('name')) }} * {{ Form::text('name', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => 'Plan Name')) }}
{{ Form::label('type', getphrase('type')) }} * {{Form::select('type',$type , null, ['class'=>'form-control' ])}}
{{ Form::label('amount', getphrase('amount')) }} * {{ Form::text('amount', $value = null , $attributes = array('class'=>'form-control', 'placeholder' => '300')) }}
{{ Form::label('description', getphrase('description')) }} * {{ Form::textarea('description', $value = null , $attributes = array('class'=>'form-control', 'rows'=>'5', 'placeholder' => 'Plan details')) }}