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

Add New Channel

store_image

Magento Cart

Use the following instructions to integrate Magento:

For Magento Admin Panel
  1. Login to Magento admin panel.
  2. Go to system -> all users as shown below
  3. Click on "Add New User".
  4. Under User Info tab, fill all required info user name, first name etc.
  5. Click on " Save User" shown at the top right corner.
  6. Then click on " User role", for example Superadmin to give access .
For Shipjunction App:
  1. Fill in the Parameters as saved from the Magento Panel Store URL : The URL of your store. API Key & API Username : API details your Magento Panel (As Mentioned in Magento Step 4)

General Information

Follow these instructions on how to add Channel

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

Seller Panel

{!! Form::label('store-url', 'Store Url') !!}
{!! Form::url('store-url', null, ['class' => 'form-control rounded', 'required' => 'required', 'placeholder'=>'e.g. http://shipjunction.magento.com without ending slash']) !!} @if ($errors->has('store-url')) {{ $errors->first('store-url') }} @endif
{!! Form::label('admin-username', 'Admin Username') !!}
{!! Form::password('admin-username', null, ['class' => 'form-control rounded', 'required' => 'required', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!} @if ($errors->has('admin-username')) {{ $errors->first('admin-username') }} @endif
{!! Form::label('admin-password', 'Admin Password') !!}
{!! Form::password('admin-password', null, ['class' => 'form-control rounded', 'required' => 'required', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!} @if ($errors->has('admin-password')) {{ $errors->first('admin-password') }} @endif
{!! Form::label('status-to-fetch', 'Order Status to fetch') !!}
{!! Form::text('status-to-fetch', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. processing, pending, holded, pending_payment', 'title'=>'e.g. processing, pending, holded, pending_payment']) !!} @if ($errors->has('status-to-fetch')) {{ $errors->first('status-to-fetch') }} @endif
{!! Form::label('auto_sync', 'Auto Sync') !!}
{!! Form::label('Label', 'Label Setting') !!}
{!! Form::label('logo', 'Store Logo') !!}
{{ Form::close() }}
@endsection