@extends('maindash2') @section('htmlheader_title') Setup Vendors @endsection @section('content')
Payment Gateway Customer Setup


{!! Form::open(['url' => 'pcust', 'autocomplete'=>'off']) !!}
{!! Form::label('firstName', 'First Name:') !!} {!! Form::text('firstName', null, ['class' =>'form-control']) !!} {!! Form::label('lastName', 'Last Name:') !!} {!! Form::text('lastName', null, ['class' =>'form-control']) !!} {!! Form::label('email', 'Email Address:') !!} {!! Form::text('email', null, ['class' =>'form-control']) !!} {!! Form::label('businessName', 'Business Name:') !!} {!! Form::text('businessName', null, ['class' =>'form-control']) !!}
{!! Form::submit('Submit', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!} @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection