Form input NOT showing in Netlify dashboard

I have a form on my website which when submitted, gives you a success message of submission. But when I check on my Netlify account, I don’t see the form data, instead what I see is:
“Waiting on those submissions…
We have detected an active form setup but haven’t received submissions yet – hang in there!”.

This has happened for a whole day now and I’m still having the same error. I don’t know if it’s a general problem or it’s just applicable to my account. The site url is:
https://www.nisidev.com/

Below is my simple html form code:

<form name="contact" method="POST" data-netlify="true">

          <p>

            <label>Your Name: <input pattern="[a-zA-Z ]*" oninvalid="setCustomValidity('Please enter Alphabets only. ')" type="text" placeholder="Enter Your Full Name" name="name" required /></label>

          </p>

          <p>

            <label

              >Your Email: <input pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,4}$" oninvalid="setCustomValidity('Please enter E-mail ')" type="email" placeholder="Enter E-Mail" name="email" required

            /></label>

          </p>

          <p>

            <label

              >Phone Number: <input type="number" placeholder="Enter Phone Number" name="phone" required

            /></label>

          </p>

          <p>

            <label>Country: <input pattern="[a-zA-Z ]*" oninvalid="setCustomValidity('Please enter Alphabets only. ')" type="text" placeholder="Enter Your Country of Residence" name="country" required /></label>

          </p>

          <p>

            <label>

              Message Title: <input type="text" placeholder="Enter Message Title" name="title" required

            /></label>

          </p>

          <p>

            <label

              >Message: <textarea placeholder="Enter Message" style="height: 10rem;" name="message" required ></textarea>

            </label>

          </p>

            <input type="submit" value="Send" class="btn-2 btn-dark">

        </form>

Hi @samogs,

Could you share the site URL so we can check?

Yea, the url is: https://www.nisidev.com/

Hi @samogs,

When was the last submission made? I can see that the latest submission logged in our database is on September 19, 2021. Are you not seeing those submissions either?

I made several submissions yesterday and have just made another just now, the problem still persists. I am not seeing the new submissions I made.
The ones of September 19, 2021, were the ones I used to test email notifications which worked well. But as of today, I no longer get form data in my account nor do I get email notifications either.

Wow, I can’t believe I got it right finally! This additional little code did the magic for me:

netlify-honeypot="bot-field"

Old code:

<form name="contact" method="POST" data-netlify="true">

New code:

<form name="contact" method="POST" data-netlify="true" netlify-honeypot="bot-field">