@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.article.title_singular') }}
id]) }}" method="POST" enctype="multipart/form-data"> @csrf @method('PUT')
@if($errors->has('title')) {{ $errors->first('title') }} @endif

{{ trans('cruds.article.fields.title_helper') }}

@if($errors->has('slug')) {{ $errors->first('slug') }} @endif

{{ trans('cruds.article.fields.slug_helper') }}

@if($errors->has('short_text')) {{ $errors->first('short_text') }} @endif

{{ trans('cruds.article.fields.short_text_helper') }}

@if($errors->has('full_text')) {{ $errors->first('full_text') }} @endif

{{ trans('cruds.article.fields.full_text_helper') }}

@if($errors->has('category_id')) {{ $errors->first('category_id') }} @endif

{{ trans('cruds.article.fields.category_helper') }}

@if($errors->has('tags')) {{ $errors->first('tags') }} @endif

{{ trans('cruds.article.fields.tags_helper') }}

@endsection @section('scripts') @endsection