@extends('layouts.app') @section('title', 'Vendor') @section('content')

{{ $retailer->name }}

@include('flash::message')

API Keys

Generate New Key
@foreach($keys as $key) @endforeach
{{ $key->key }}

{!! Form::open(['id' => 'form','novalidate' => 'novalidate' ]) !!}
{!! Form::label('webhook_url','Webhook Url') !!} {!! Form::text('webhook_url' , $retailer->webhook_url , ['class' => 'form-control','placeholder' => 'Webhook Url','required'=>'true']) !!}
{!! Form::close() !!}

Blocked Products

@include('flash::message') @include('flash::message')

Block a list of products

{!! Form::open(['id' => 'upload_csv', 'files' => true, 'url' => url('retailer/import-blocked/')]) !!}

Download this sample spreadsheet and fill in the product information

{!! Form::label('csv_file','Choose CSV') !!} {!! Form::file('csv_file') !!} {!! Form::hidden('retailer_id', $retailer->id) !!}
{!! Form::close() !!}
Image Name SKU Action
@endsection @section('footer') @endsection