У меня есть это в моих маршрутах:
+--------+---------------------------+--------------+--------------------------- ---------+----------------+---------------+
| Domain | URI | Name | Action | Before Filters | After Filters |
+--------+---------------------------+--------------+--------------------------- ---------+----------------+---------------+
| | GET|HEAD / | | postcontroller | auth | |
| | GET|HEAD login | | [email protected] | | |
| | POST login | | [email protected] | | |
| | GET|HEAD logout | | [email protected] | | |
| | GET|HEAD post | post.index | [email protected] | | |
| | GET|HEAD post/create | post.create | [email protected] | | |
| | POST post | post.store | [email protected] | | |
| | GET|HEAD post/{post} | post.show | [email protected] | | |
| | GET|HEAD post/{post}/edit | post.edit | [email protected] | | |
| | PUT post/{post} | post.update | [email protected] | | |
| | PATCH post/{post} | | [email protected] | | |
| | DELETE post/{post} | post.destroy | [email protected]
Теперь я хочу создать форму html, которая будет использовать метод PUT. Вот мои коды:
<form class="col-md-12" action="<?php echo URL::to('/');?>/post/<?=$post->postID?>" method="put">
<div class="form-group">
<textarea type="text" class="form-control input-lg" placeholder="Text Here" name="post"><?=$post->post?></textarea>
</div>
<div class="form-group">
<button class="btn btn-primary btn-lg btn-block" type="submit" value="Edit">Edit</button>
</div>
</form>
Но я не работаю, чтобы отправить форму в post.edit.
У меня есть googled, и у меня есть решение, которое я должен использовать
{{form:...etc
Но, я хочу, чтобы форма еще могла быть выполнена с помощью стилей CSS. Есть ли решения? Благодарю вас.