@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

Woocommerce

  1. Enable or disable store here.
  2. Enable or disable store auto sync here.
  3. Change store logo here.
  4. Selcet store label here.
  5. Enable or disable Display store name in label .
{{ Form::open(array('url' => 'store/update', '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', 'Consumer key') !!}
{!! Form::text('api-key', $store->api_username, ['class' => 'form-control rounded', 'readonly', 'required' => 'required', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!}
{!! Form::label('api-password', 'Consumer secret') !!}
{!! Form::text('api-password', $store->api_password, ['class' => 'form-control rounded', 'readonly', 'required' => 'required', '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', 'title'=>'pending, processing, on-hold, completed, cancelled, refunded, failed , trash', 'placeholder'=>'e.g. pending, processing, on-hold, completed, cancelled, refunded, failed , trash']) !!}
{!! Form::label('api-password', 'Active / Inactive') !!}
{!! Form::label('auto_sync', 'Auto 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