@extends('layouts.app') @section('content')
@include('layouts.includes.header')
@if($store->plan_system == '1')
Note:- if you are active in this store After this action then you can not be updating this store!
@endif

Edit Channel

Custom

  1. Change store logo here.
  2. Selcet store label here.
  3. Enable or disable Display store name in label .
{{ Form::open(array('url' => 'store/csupdate', 'files'=>true)) }} {!! Form::hidden('id', $store->id) !!}

General Information

Follow these instructions on how to add Channel

{!! Form::open(array('url'=>'')) !!} {{ csrf_field() }} {!! Form::label('channel-name', 'Channel Name') !!}
{!! Form::text('channel-name', $store->store_name, ['class' => 'form-control rounded','required' => 'required']) !!}

Seller Panel

{!! Form::label('display_name_in_label', 'Display store name in label') !!}
{!! Form::label('Label', 'Label Setting') !!}
label == 0 ? 'checked' : ''}}>
label == 1 ? 'checked' : ''}}>
{!! Form::label('logo', 'Store Logo') !!}
{{ Form::close() }}
@endsection