@extends('Myadmin::layout.basic')
@section('header')
@stop
@section('content')
    {{ Form::model($brand, array(
		'action' => array('ProductController@brandupdate', $brand->id ),
        'class'=>'form-horizontal well',
        'method' => 'post',
		'files' => true 
    ))}}
	@if($errors->has())
			
{{ $errors->first() }}
	@endif
	
{{$brand->id}}
    
    
    
    
    
	
    
    
    
	
    
    {{ Form::close()}}