@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

store_image

Shopify Cart

  1. Enable or disable store here.
  2. Enable or disable store auto sync here.
  3. Enable or disable store inventory management here.
  4. Enable or disable store product sync here.
  5. Change store logo here.
  6. Selcet store label here.
  7. Enable or disable Display store name in label .
{{ Form::open(array('url' => 'store/shopifyUpdate', '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('store-url', 'Store Url') !!}
{!! Form::text('store-url', $store->store_url, ['class' => 'form-control rounded','readonly', 'required' => 'required', 'placeholder'=>'e.g. http://demo02.myshopify.com']) !!}
{!! Form::label('api-key', 'API Key') !!}
{!! Form::text('api-key', $store->api_username, ['class' => 'form-control rounded', 'required' => 'required','readonly', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!}
{!! Form::label('api-password', 'API Password') !!}
{!! Form::text('api-password', $store->api_password, ['class' => 'form-control rounded', 'required' => 'required','readonly', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!}
{!! Form::label('shared-secret', 'Shared secret') !!}
{!! Form::text('shared-secret', $store->api_secret, ['class' => 'form-control rounded', 'required' => 'required','readonly', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!}
{!! Form::label('status-to-fetch', 'Order Status to fetch') !!}
{!! Form::text('status-to-fetch', $store->status_to_fetch, ['class' => 'form-control rounded', 'placeholder'=>'e.g. shipped, partial, unshipped, any']) !!}
{!! Form::label('api-password', 'Active / Inactive') !!}
{!! Form::label('auto_sync', 'Auto Sync') !!}
{!! Form::label('inventory_management:', 'Inventory management:') !!}
{!! Form::label('product_sync', 'Product sync') !!}
{!! 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