在 Laravel 中使用表单而不包括 LaravelCollective

Using Forms in Laravel without including LaravelCollective

由于Laravel collective 已经关闭且不可用,我们如何在laravel 框架中使用表单?

这个有效

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