Answers for "laravel checkbox terms"

PHP
2

laravel checkbox terms and conditions

<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>
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language