OctoberCMSでのフォームデータリクエストの方法
フォームデータをPOSTリクエストとして送信する方法:<form method="POST" action="{{ 'your-route' | page }}"> <input type="hidden" name="_token" value="{{ form_token() }}"> <input type="text" name="name"> <input type="email" name="email"> <button type="submit">Submit</button>>>More