次のエラーが表示されます。
Missing required parameters for [Route: topics.update] [URI: topics/{topic}]. (View: C:\xampp\htdocs\phpboards\resources\views\topics\edit.blade.php)
これは、ユーザーが編集できるリンクです:
<a href="/boards/topics/edit/{{$topic->id}}" class="btn btn-default">Edit</a>
これは編集用のコントローラーです。
$topic = Topic::find($id);
return view('topics.edit')->with('topic', $topic);
これはルートです:
Route::get('/boards/topics/edit/{id}', 'TopicController@edit');
これは編集用のフォームです。
<div class="container">
{!! Form::open(['action' => 'TopicController@update', 'method' => 'POST']) !!}
<div class="form-group">
{{ Form::label('title', 'Title') }}
{{ Form::text('title', $topic->topic_title, ['class' => 'form-control', 'placeholder' => 'Title of the Post']) }}
</div>
<div class="form-group">
{{ Form::label('desc', 'Desc') }}
{{ Form::textarea('desc', $topic->topic_body, ['class' => 'form-control', 'placeholder' => 'Description of the Post']) }}
</div>
{{ Form::submit('Submit', ['class' => 'btn btn-default']) }}
{!! Form::close() !!}
</div>
私はここで間違ったことをしましたか??