Since Laravel collective has been shutdown and is not available, how can we use forms in the laravel framework?
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>';
?>