@extends('admin.layouts.default') @section('head') {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ Form::model($inputs) }}
{{-- 優惠代碼 --}}
{{ Form::label('coupon', '優惠代碼') }}
{{ Form::text('coupon', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('coupon', '

:message

') }}
{{-- /優惠代碼 --}} {{-- 運算子 --}}
{{ Form::label('operators', '運算子') }}
{{ Form::select('operators', $operators, null, array('class' => 'form-control', 'required' => 'required')) }}
{{-- /運算子 --}} {{-- 折扣 --}}
{{ Form::label('discount', '折扣') }}
{{ Form::input('text','discount', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('discount', '

:message

') }}
{{-- /折扣 --}} {{-- 數量 --}}
{{ Form::label('quantity', '數量') }}
{{ Form::input('number','quantity', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('quantity', '

:message

') }}
{{-- /數量 --}} {{-- 開始日期 --}}
{{ Form::label('start_at', '開始日期') }}
{{ Form::input('date','start_at', null, array('class' => 'form-control')) }} {{ $errors->first('start_at', '

:message

') }}
{{-- /開始日期 --}} {{-- 結束日期 --}}
{{ Form::label('end_at', '結束日期') }}
{{ Form::input('date','end_at', null, array('class' => 'form-control')) }} {{ $errors->first('end_at', '

:message

') }}
{{-- /結束日期 --}} {{-- 備註 --}}
{{ Form::textarea('note', null, array('class' => 'form-control', 'id' => 'note')) }}
{{-- /備註 --}}

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