@extends('layouts.app') @section('content')
@include('layouts.includes.header')

Add New Channel

store_image

Shopify Cart

Use the following instructions to integrate Shopify:

  1. Login to Shopify Admin Panel.
  2. Go to Apps.
  3. Click on Private Apps Button.
  4. Click on Create a Private App.
  5. Enter Title name under the Description tab and click on Save.
  6. Click on Title, as you entered earlier.
  7. Here you will find Shopify API Key, password, Shared Secret.
  8. Copy the identifiers and integrate the channel.

General Information

Follow these instructions on how to add Channel

{!! Form::open(array('url' => 'store/shopifyCreate','files'=>true )) !!} {!! Form::hidden('type', 'sp') !!}
{!! Form::label('channel-name', 'Channel Name') !!}
{!! Form::text('channel-name', null, ['class' => 'form-control rounded']) !!} @if ($errors->has('channel-name')) {{ $errors->first('channel-name') }} @endif

Seller Panel

{!! Form::label('store-url', 'Store Url') !!}
{!! Form::text('store-url', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. http://demo02.myshopify.com']) !!} @if ($errors->has('store-url')) {{ $errors->first('store-url') }} @endif
{!! Form::label('api-key', 'API Key') !!}
{!! Form::text('api-key', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!} @if ($errors->has('api-key')) {{ $errors->first('api-key') }} @endif
{!! Form::label('api-password', 'API Password') !!}
{!! Form::text('api-password', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!} @if ($errors->has('api-password')) {{ $errors->first('api-password') }} @endif
{!! Form::label('shared-secret', 'Shared secret') !!}
{!! Form::text('shared-secret', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!} @if ($errors->has('shared-secret')) {{ $errors->first('shared-secret') }} @endif
{!! Form::label('status-to-fetch', 'Order Status to fetch') !!}
{!! Form::text('status-to-fetch', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. shipped, partial, unshipped, any']) !!} @if ($errors->has('status-to-fetch')) {{ $errors->first('status-to-fetch') }} @endif
{!! Form::label('auto_sync', 'Auto Sync') !!}
{!! Form::label('inventory_management:', 'Inventory management:') !!}
{!! Form::label('product_sync', 'Product sync') !!}
{!! Form::label('Label', 'Label Setting') !!}
-->
{!! Form::label('logo', 'Store Logo') !!}
{{ Form::close() }}
@endsection