{{ Form::label('title', getphrase('title')) }} * {{ Form::text('title', null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('certificate_title'), 'ng-model'=>'title', 'required'=> 'true', 'ng-class'=>'{"has-error": formCert.title.$touched && formCert.title.$invalid}', )) }}
{!! getValidationMessage()!!}
{{ Form::label('description', getphrase('description')) }} {{ Form::text('description', null , $attributes = array('class'=>'form-control', 'placeholder' => getPhrase('description'), 'ng-model'=>'description' )) }}
{{ Form::label('required', getphrase('required')) }}
{{ Form::radio('required', 'No', false, array('id'=>'no1', 'name'=>'required')) }}
{{ Form::radio('required', 'Yes', true, array('id'=>'yes1', 'name'=>'required')) }}
{{ Form::label('status', getphrase('status')) }}
{{ Form::radio('status', 'Active', true, array('id'=>'active1', 'name'=>'status')) }}
{{ Form::radio('status', 'Inactive', false, array('id'=>'inactive1', 'name'=>'status')) }}