$('#product-form').bootstrapValidator({
icons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {
Name: {
validators: {
notEmpty: { message: 'Name is required' },
stringLength: { min: 2, max: 50, message: 'Name must be between 2 and 50 characters length' }
}
},
Price: {},
Description: {},
Snippet: {}
}
});