@extends('admin.layouts.default')
@section('head')
{{-- LiveEditor --}}
{{ HTML::script('admin/assets/js/libs/LiveEditor/scripts/innovaeditor.js') }}
{{ Form::model($inputs, array('files' => true)) }}
{{-- 戶外百科日期 --}}
{{ Form::label('post_at', '戶外百科日期') }}
{{ Form::input('date','post_at', null, array('class' => 'form-control', 'required' => 'required')) }}
{{ $errors->first('post_at', '
:message
') }}
{{-- /戶外百科日期 --}}
{{-- 戶外百科代表圖 --}}
{{ Form::label('file_name', '戶外百科代表圖') }}
{{ Form::file('file_name') }}
{{-- 戶外百科代表圖 --}}
{{-- 文章標題 --}}
{{ 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