@extends('admin.template.master') @section('title')

Website Brand list hide show Edit

@endsection @section('main-content')
@if(Session::has('message'))

Alert!

{{Session('message')}}
@endif
@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
@endsection