Edit article
@if ($errors->any())
Whoops! There were some problems with your input.
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{!! Form::model($article, ['method' => 'PATCH','url' => route('portal.articles.update', $article), 'files' => true, 'id' => 'myForm']) !!}
@include('admin.article.partials.form', ['article' => $article])
{!! Form::close() !!}