@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() !!}
@endsection @section('footer') @endsection