@extends('admin.layouts.default') @section('head') {{-- LiveEditor --}} {{ HTML::script('admin/assets/js/libs/LiveEditor/scripts/innovaeditor.js') }} {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ Form::model($inputs) }}
{{-- 文章日期 --}}
{{ Form::label('post_at', '文章日期') }}
{{ Form::input('date','post_at', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('post_at', '

:message

') }}
{{-- /文章日期 --}} {{-- 文章標題 --}}
{{ Form::label('title', '文章標題') }}
{{ Form::text('title', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('title', '

:message

') }}
{{-- /文章標題 --}} {{-- 文章內容 --}}
{{ Form::textarea('content', null, array('class' => 'form-control', 'id' => 'content')) }}
{{-- /文章內容 --}} {{-- 關鍵字 --}}
{{ Form::label('meta_keyword', '關鍵字') }}
{{ Form::text('meta_keyword', null, array('class' => 'form-control')) }} {{ $errors->first('meta_keyword', '

:message

') }}
{{-- /關鍵字 --}} {{-- 網頁敘述 --}}
{{ Form::label('meta_descript', '網頁敘述') }}
{{ Form::textarea('meta_descript', null, array('class' => 'form-control')) }} {{ $errors->first('meta_descript', '

:message

') }}
{{-- /網頁敘述 --}}

取消
{{ Form::close() }}
@stop