<form action="/checkbox-example" method="POST">
@csrf
<label>Your Name</label>
<input type="text" name="name"/><br/><br/>
<input type="checkbox" name="terms">
<label>Do you agree to Terms & Conditions</label><br/><br/>
<button type="submit">Submit</button>
</form>