{{ Form::open([ 'route' => 'Admin.Shop.Articles.store', 'id' => 'article-form', 'autocomplete' => 'off', 'files' => true, ]) }} @php $articlePublicUrl = null; if (!empty($article['slug'] ?? null)) { $articlePublicUrl = route('Shop.Articles.slug', ['slug' => $article['slug']]); } elseif (!empty($article['id'] ?? null)) { $articlePublicUrl = route('Shop.Articles.show', ['id' => $article['id']]); } @endphp @if ($articlePublicUrl)
@endif @include('Admin.Shop.Articles.partials.characteristics') {{ Form::close() }}