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

:message

') }}
{{-- /優惠活動名稱 --}} {{-- 折扣方法 --}}
{{ Form::label('operators', '折扣方法') }}
{{ Form::select('operators', $operators, null, array('class' => 'form-control', 'required' => 'required')) }}

訂單總計減價直接輸入減價金額,訂單總計折扣輸入浮點數,例如:打八折,輸入0.8

{{-- /折扣方法 --}} {{-- 折扣 --}}
{{ 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::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::checkbox('free', 1, null, array('id' => 'free')) }} {{ Form::label('free', '不拘') }}
{{-- /優惠期限 --}} {{-- 備註 --}}
{{ Form::textarea('note', null, array('class' => 'form-control', 'id' => 'note')) }}
{{-- /備註 --}}

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