1
0
mirror of synced 2025-01-20 01:11:42 +03:00

8 lines
326 B
JavaScript
Raw Normal View History

2018-01-30 17:21:21 -05:00
export default {
required: ({label, value}) => `${label} is required`,
email: ({label, value}) => `${label} is invalid.`,
confirmed: ({label, value}) => `${label} does not match the confirmation field.`,
number: ({label, value}) => `${label} is not a number`,
default: ({label, value}) => `This field is invalid.`
2018-01-30 17:21:21 -05:00
}