@extends('layout.basic_front') @section("content")
{{ HTML::image($brand->img_path,"",['class'=>"img-circle",'style'=>'width:100px;height:100px']) }}

{{$brand->name}}

{{$brand->description}}
@if($brand->buynow != null) @endif @if($brand->url != null) @endif @if($brand->location != null) @endif
{{-- --}}

@foreach($followers as $follower)
{{ HTML::image($follower->img_path,"",['class' => "img-responsive img-circle",'style'=>'width:50px;height:50px']) }}

{{$follower->name}}

@endforeach
@stop