@extends('admin.frame_form') @if (!isset($article)) @section('action', '添加') @else @section('action', '编辑') @endif @section('who', '文章') @section('enctype', 'multipart/form-data') @section('form_content') *文章标题:     {{ $errors->first('title') }} *文章封面: @if (!isset($article)) @include('admin.upload_image', ['action' => '上传', 'name' => 'cover']) @else

@include('admin.upload_image', ['action' => '更换', 'name' => 'cover']) @endif *文章关键词:
(请用英文逗号分隔)     {{ $errors->first('keywords') }} *文章简介:     {{ $errors->first('txt') }} *所属菜单: @foreach ($menus as $menu) @if (isset($article) && in_array($menu->id, $article->belong)) @else @endif @endforeach     {{ $errors->first('menu') }} *文章内容: @include('admin.editor_remark') @stop @section('javascript') @include('UEditor::head') @stop