1

Since Laravel collective has been shutdown and is not available, how can we use forms in the laravel framework?

bahdotsh
  • 459
  • 3
  • 17
  • Laravel Collective is not available anymore to include the 'Form' class. Both the links are not valid. @MjM – bahdotsh Mar 13 '19 at 07:40

1 Answers1

1

This works

 <?php
    echo '<form action="page.php" method="post">
        <input type="hidden" name="CourseID" value="'.$Array[0].'"> 
        <input type="submit" value="Edit" name="Edit">
    </form>';
?>
bahdotsh
  • 459
  • 3
  • 17