@if(isset($brand->brand_slug))
{!! Form::open(['method' => 'POST', 'url' => '/admin/website-brand-hide-show/' . $brand->brand_slug .'/edit' ]) !!}
{!! Form::label('Status') !!}
{!! Form::select('is_show', ['1' => 'Active', '0' => 'Inactive'], isset($brand->is_show) ? $brand->is_show : null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endif