Formの書き方メモ
新規作成のとき
{{ Form::open(['route' => 'artist.store','class'=> 'form-horizontal']) }}
更新のとき
{{ Form::model($artist, ['method' => 'put', 'route' => ['artist.update', $artist->id],'class'=> 'form-horizontal']) }}
新規作成のとき
{{ Form::open(['route' => 'artist.store','class'=> 'form-horizontal']) }}
更新のとき
{{ Form::model($artist, ['method' => 'put', 'route' => ['artist.update', $artist->id],'class'=> 'form-horizontal']) }}