{{Form::label('name',__('Name'),['class'=>'form-label'])}}
{{Form::text('name',null,array('class'=>'form-control font-style','placeholder'=>__('Enter Plan Name'),'required'=>'required'))}}
@if($plan->price > 0)
{{Form::label('price',__('Price'),['class'=>'form-label'])}}
{{Form::number('price',null,array('class'=>'form-control','placeholder'=>__('Enter Plan Price'),'required'=>'required' ,'step' => '0.01'))}}