@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('category_name', '主導覽名稱') }}
{{ Form::text('category_name', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('category_name', '

:message

') }}
{{-- /主導覽名稱 --}} {{-- 主導覽英文名稱 --}}
{{ Form::label('category_name_en', '主導覽英文名稱') }}
{{ Form::text('category_name_en', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('category_name_en', '

:message

') }}
{{-- /主導覽英文名稱 --}} {{-- 主導覽說明 --}}
{{ Form::textarea('content', null, array('class' => 'form-control', 'id' => 'content')) }}
{{-- /主導覽說明 --}}

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