@extends('theme::layout.public') @section('seo_title')编辑文章 - {{ Setting()->get('website_name') }}@endsection @section('css') @endsection @section('content')
@if($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if($article->logo)
@endif @if($errors->has('logo'))

{{ $errors->first('logo') }}

@endif
{!! old('content', $article->content) !!}
@if($errors->has('content'))

{{ $errors->first('content') }}

@endif
    @if( Setting()->get('code_create_article') )
  • @include('theme::layout.auth_captcha')
  • @endif
@endsection @section('script') @endsection