Commit 8ca88df6 authored by TTS Tran Viet Anh's avatar TTS Tran Viet Anh

update validation

parent 52fa7d36
...@@ -199,49 +199,6 @@ class="form-control @error('numberOfQuestion') is-invalid @enderror" placeholder ...@@ -199,49 +199,6 @@ class="form-control @error('numberOfQuestion') is-invalid @enderror" placeholder
} }
}); });
//validate form
// $("#uploadForm").validate({
// rules: {
// category: "required",
// name: "required",
// fee: {
// required: true,
// number: true,
// min: 2
// }
// level: "required",
// numberOfQuestion: {
// required: true,
// number: true,
// min: 2
// },
// time: {
// required: true,
// number: true,
// min: 2
// },
// },
// messages: {
// category: 'Hãy chọn danh mục!',
// name: 'Hãy nhập tên đề thi',
// fee: {
// required: 'Hãy nhập phí thi',
// number: 'Hãy nhập phí thi bằng một số',
// min: 'Phí thi không được nhỏ hơn 0'
// },
// level: 'Hãy chọn mức độ',
// time: {
// required: 'Hãy nhập thời gian thi',
// number: 'Hãy nhập thời gian thi bằng một số',
// min: 'Thời gian thi không được nhỏ hơn 0'
// },
// numberOfQuestion: {
// required: 'Hãy nhập số câu hỏi',
// number: 'Hãy nhập số câu hỏi bằng một số',
// min: 'Số câu hỏi không được nhỏ hơn 0'
// },
// }
// });
}) })
</script> </script>
@endsection @endsection
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment