@extends('admin.layouts.default') @section('head') @if (!Config::get('products.hidden_item.content')) {{-- LiveEditor --}} {{ HTML::script('admin/assets/js/libs/LiveEditor/scripts/innovaeditor.js') }} @endif {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ Form::model($inputs) }}
{{-- 運費設定 --}} @if (!Config::get('products.hidden_item.shipping_category_id')) @if ($shipping_category)
{{ Form::label('shipping_category_id', '運費設定') }}
{{ Form::select('shipping_category_id', $shipping_category, null, array('class' => 'form-control')) }}
@endif @endif {{-- /運費設定 --}} {{-- 產品標籤 --}} @if (!Config::get('products.hidden_item.tag'))
{{ Form::label('tag', '產品分類') }}
@foreach ($products_tags as $element) {{ Form::checkbox('tag_'.$element['id'], $element['id'], $selected, array('id' => 'tag_'.$element['id'])) }} {{ Form::label('tag_'.$element['id'], $element['name']) }} @endforeach
@endif {{-- /產品標籤 --}} {{-- 品牌 --}} @if (!Config::get('products.hidden_item.brands_id')) @if (count($brands) > 0)
{{ Form::label('brands', '品牌') }}
{{ Form::select('brands_id', $brands, null, array('class' => 'form-control', 'id' => 'js_brands_select','required' => 'required')) }}
@endif @endif {{-- /品牌 --}} {{-- 品牌標籤 --}} @if (!Config::get('products.hidden_item.brands_tags'))
@if ($inputs['brands_id'] > 0)
{{ Form::label('brands_tags', '品牌分類') }}
@foreach ($brands_tags->brands_tags as $element) {{ Form::checkbox('brands_tags_'.$element->id, $element->id, null, array('id' => 'brands_tags_'.$element->id)) }} {{ Form::label('brands_tags_'.$element->id, $element->name) }} @endforeach
@endif
@endif {{-- /品牌標籤 --}} {{-- 產品編號 --}} @if (!Config::get('products.hidden_item.serial_number'))
{{ Form::label('serial_number', '產品編號') }}
{{ Form::text('serial_number', null, array('class' => 'form-control')) }} {{ $errors->first('serial_number', '

:message

') }}
@endif {{-- /產品編號 --}} {{-- 產品名稱 --}} @if (!Config::get('products.hidden_item.name'))
{{ Form::label('name', '產品名稱') }}
{{ Form::text('name', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('name', '

:message

') }}
@endif {{-- /產品名稱 --}} {{-- 作品名稱 --}} @if (!Config::get('products.hidden_item.work_name'))
{{ Form::label('work_name', '作品名稱') }}
{{ Form::text('work_name', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('work_name', '

:message

') }}
@endif {{-- /作品名稱 --}} {{-- 規格 --}} @if (!Config::get('products.hidden_item.spec'))
{{ Form::label('spec', '規格') }}
{{ Form::text('spec', null, array('class' => 'form-control')) }} {{ $errors->first('spec', '

:message

') }}
@endif {{-- /規格 --}} {{-- 款式 --}} @if (!Config::get('products.hidden_item.style'))
{{ Form::label('style', '款式') }}
{{ Form::text('style', null, array('class' => 'form-control')) }} {{ $errors->first('style', '

:message

') }}
@endif {{-- /款式 --}} {{-- 庫存量 --}} @if (!Config::get('products.hidden_item.stock'))
{{ Form::label('stock', '庫存量') }}
{{ Form::input('number', 'stock', null, array('class' => 'form-control')) }} {{ $errors->first('stock', '

:message

') }}
@endif {{-- /庫存量 --}} {{-- 單位 --}} @if (!Config::get('products.hidden_item.unit'))
{{ Form::label('unit', '單位') }}
{{ Form::text('unit', null, array('class' => 'form-control')) }} {{ $errors->first('unit', '

:message

') }}
@endif {{-- /單位 --}} {{-- 建議售價 --}} @if (!Config::get('products.hidden_item.suggested_retail_price'))
{{ Form::label('suggested_retail_price', '建議售價') }}
{{ Form::text('suggested_retail_price', null, array('class' => 'form-control')) }} {{ $errors->first('suggested_retail_price', '

:message

') }}
@endif {{-- /建議售價 --}} {{-- 實際售價 --}} @if (!Config::get('products.hidden_item.price'))
{{ Form::label('price', '實際售價') }}
{{ Form::text('price', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('price', '

:message

') }}
@endif {{-- /實際售價 --}} {{-- 產品說明 --}} @if (!Config::get('products.hidden_item.content'))
{{ Form::textarea('content', null, array('class' => 'form-control', 'id' => 'content')) }}
@endif {{-- /產品說明 --}} {{-- 第二標題 --}} @if (!Config::get('products.hidden_item.title_second'))
{{ Form::label('title_second', '第二標題') }}
{{ Form::text('title_second', null, array('class' => 'form-control')) }} {{ $errors->first('title_second', '

:message

') }}
@endif {{-- /第二標題 --}} {{-- 第二說明 --}} @if (!Config::get('products.hidden_item.title_second'))
{{ Form::textarea('content_second', null, array('class' => 'form-control', 'id' => 'content_second')) }}
@endif {{-- /第二說明 --}} {{-- 關鍵字 --}} @if (!Config::get('products.hidden_item.meta_keyword'))
{{ Form::label('meta_keyword', '關鍵字') }}
{{ Form::text('meta_keyword', null, array('class' => 'form-control')) }} {{ $errors->first('meta_keyword', '

:message

') }}
@endif {{-- /關鍵字 --}} {{-- 網頁敘述 --}} @if (!Config::get('products.hidden_item.meta_descript'))
{{ Form::label('meta_descript', '網頁敘述') }}
{{ Form::textarea('meta_descript', null, array('class' => 'form-control')) }} {{ $errors->first('meta_descript', '

:message

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

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