Laravel form method라라벨 폼 메소드
PUT
, PATCH
, DELETE
의 action을 받지 않는다.PUT
, PATCH
, DELETE
를 정의 할 때 hidden으로 _method
를 넣고 값에 메소드를 넣어준다.<form action="/foo/bar" method="POST">
<input type="hidden" name="_method" value="PUT">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
</form>