@extends('Myadmin::layout.basic') @section('content')
{{ Form::model($user, array( 'route'=>array($_CONST["CONTROLLER_ROUTE"].'.update', $user->id),'files'=>true, 'class'=>'form-horizontal well', 'method' => 'put') )}}
@if($user->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::text('name',null, array('class' => 'form-control'));}}
{{ Form::textarea('description',null, array('class' => 'form-control'));}}
{{ Form::text('Facebook_url',null, array('class' => 'form-control'));}}
{{ Form::text('Instagram_url',null, array('class' => 'form-control'));}}
{{ Form::text('Youtube_url',null, array('class' => 'form-control'));}}
{{ HTML::image($user->photo,"",['style'=>'width:150px;height:150px', 'id'=>'photo_show']) }}
{{ HTML::image($user->image,"",['style'=>'width:150px;height:150px', 'id'=>'image_show']) }}
{{ Form::text('buy_now',null, array('class' => 'form-control'));}}
{{ Form::text('location',null, array('class' => 'form-control'));}}
{{ Form::text('website',null, array('class' => 'form-control'));}}
{{ Form::close()}}
@stop