To enable validation for a CVV in the recurly.js form, add the following option in the recurly.configure() function:
<script>
recurly.configure({
publicKey: '<publicApiKey>',
required: [ 'cvv' ], // add this option
// styling options etc...
});
</script>