@extends('Myadmin::layout.basic') @section('header') @stop @section('content')
{{ Form::model($product, array( 'url' => array('admin/product/activityupdate', $product->id), 'class'=>'form-horizontal well', 'method' => 'get' //put ))}} @if($errors->has()) @endif

@if ($cid != 1)
{{ Form::number('price', null, array('class' => 'form-control'))}}
{{ Form::number('selling_price', null, array('class' => 'form-control'))}}
{{ Form::radio('is_available', '上架' )}}上架
{{ Form::radio('is_available', '下架' )}}下架
{{ Form::number('deal_lowerbound', null, array('class' => 'form-control'))}}
{{ Form::number('deal_upperbound', null, array('class' => 'form-control'))}}
@else
/
~
/ ~
{{ Form::number('operator_num', null, array('class' => 'form-control' , 'id' => 'operatorid'))}}
/ ~
@endif
{{ Form::close()}}
@stop @section('js-snippet') @include('Myadmin::js.preview', array('bind' => 'input[name=image]','target' => '#preview')) @include('Myadmin::js.ckeditor', array( 'target' => 'origin_content', )) @stop