Brands

Go Back
@if(Session::has('success'))
Success! {{Session::get('success')}}
@endif @if(Session::has('failure'))
Error! {{Session::get('success')}}
@endif
Edit Brand
{{Form::open(array("url"=>"/admin/brands/update/".$brand->id,"method" => "PUT","role"=>"form","class" => "form-horizontal","files"=>"true"))}}
{{Form::text('brand_name',$brand->brand_name,array("class"=>"form-control", "placeholder"=>"Enter Brand Name"))}} {{$errors->first('brand_name')}}
{{Form::file('brand_image',array("class"=>"form-control"))}}
@if($brand->brand_image == '') There is no image uploaded for this brand @else {{HTML::image('images/'.$brand->brand_image,"",["class"=>"img-brand","style"=>"width:150px"])}} @endif
{{Form::text('description',$brand->description,array("class"=>"form-control", "placeholder"=>"Enter Description"))}} {{$errors->first('description')}}
{{Form::text('priority',$brand->priority,array("class"=>"form-control", "placeholder"=>"Enter Order"))}} {{$errors->first('priority')}}
{{Form::close()}}