@extends('Myadmin::layout.basic') @section('header') @stop @section('content')
{{ Form::model($article, array( 'route' => array($_CONST["CONTROLLER_ROUTE"].'.update', $article->id),'files'=>true, 'class' =>'form-horizontal well', 'method' => 'put' ))}}
@if($article->isActive)
{{ Form::radio('publish', '1', true )}}是
{{ Form::radio('publish', '0')}}否
@else
{{ Form::radio('publish', '1')}}是
{{ Form::radio('publish', '0', true)}}否
@endif
{{--
{{ Form::select('category', $option, null, array('class' => 'form-control'))}}
{{ Form::select('blogger_id', $option_bloggers, null, array('class' => 'form-control'))}}
--}}
{{ Form::input('date','created_at',date("Y-m-d",strtotime($article->created_at)), array('class'=>'form-control')) }}
{{ HTML::image($article->img_path,"",['style'=>'width:150px;height:150px', 'id'=>'img_show']) }}
{{--
{{ Form::text('tag1', null, array('class' => 'form-control'))}}
{{ Form::text('tag2', null, array('class' => 'form-control'))}}
{{ Form::text('tag3', null, array('class' => 'form-control'))}}
{{ Form::text('youtube_url', null, array('class' => 'form-control'))}}

--}}
{{ Form::text('title', null, array('class'=>'form-control'));}}
{{ Form::textarea('description', null, array('class' => 'input-xxlarge form-control ckeditor'))}}
{{--
{{ Form::select('mention_product', $option_products, null, array('class' => 'form-control'))}}

{{ HTML::image($article->mention_img,"",['style'=>'width:150px;height:150px', 'id'=>'mention_img_show']) }}
{{ Form::text('mention_store', null, array('placeholder'=> '店名','id'=>'auto_store','class'=>'form-control'));}}
{{ Form::text('mention_phone', null, array('placeholder'=> '電話','class'=>'form-control'));}}
{{ Form::textarea('mention_address', null, array('placeholder'=> '地址','class'=>'form-control'));}}
{{ Form::textarea('mention_content', null, array('placeholder'=> '提及內容','class'=>'form-control'));}}
--}} {{ Form::close()}}
@stop