@extends('backend-template')
@section('content')
Online Shopping Settings
{!! Form::open(['url' => "admin/shoppingSettings/store", 'class' => 'form-horizontal dialog-form', 'autocomplete' => 'off', 'method' => 'post']) !!}
{!! Form::checkbox('is_active', $settings['is_active'], $settings['is_active'], ['id' => 'is_active']) !!}
{{-- end form-group --}}
{!! Form::submit('Save Settings', ['class' => 'btn btn-primary pull-right']) !!}
{!! Form::close() !!}
@stop
@section('js_functions')
{{-- my_main.init_select2();--}}
my_main.check_online_shopping_switch();
@stop