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

Contact Us Online

To order by phone, please use contacts below.

Gourmet Gardens Specialty Foods, Inc.


Address: 300 East Tena St., Jacksonville, TX 75766

Phone: (903) 284-6215

Fax: (903) 284-6223

@if(Session::has('message')) @endif @if(Session::has('error')) @endif {!! Form::open(['method'=>'POST','action' => 'SiteController@contactSend']) !!}
{!! Form::label('name','Name:') !!} {!! Form::text('name', null, ['class'=>'form-control']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::label('email','Email:') !!} {!! Form::email('email', null, ['class'=>'form-control']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::label('phone','Phone Number:') !!} {!! Form::text('phone', null, ['class'=>'form-control']) !!} @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
{!! Form::label('subject','Subject:') !!} {!! Form::text('subject', null, ['class'=>'form-control']) !!} @if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
{!! Form::label('message','Message:') !!} {!! Form::textarea('message', null, ['class'=>'form-control']) !!} @if ($errors->has('message')) {{ $errors->first('message') }} @endif
{!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
{!! Form::submit('Send', ['class'=>'form-control btn btn-primary']) !!} {!! Form::close() !!}

OUR MAP

@endsection @section('footer') {{-- --}} @endsection