@extends('admin.frame_form') @if (!isset($course)) @section('action', '添加') @else @section('action', '编辑') @endif @section('who', '课程') @section('enctype', 'multipart/form-data') @section('form_content') *课程名称:     {{ $errors->first('name') }} 可报人数:     {{ $errors->first('user_num') }} 课程开始日期:     {{ $errors->first('start_date') }} 课程结束日期:     {{ $errors->first('end_date') }} *上课地点:     {{ $errors->first('address') }} *课程关键词:
(请用英文逗号分隔)     {{ $errors->first('keywords') }} *课程简介:     {{ $errors->first('description') }} *所属菜单: @foreach ($menus as $menu) @if (isset($course) && in_array($menu->id, $course->belong)) @else @endif @endforeach     {{ $errors->first('belong') }} *课程介绍: @include('admin.editor_remark') @stop @section('javascript') @include('UEditor::head') @stop