@extends('layouts.app') @section('title','Label') @section('content')
{!! Form::open(['method'=>'POST','action' => 'LabelController@next']) !!}
@if ($errors->has('label'))
Please Select a Label to continue.
@endif

PICK YOUR LABEL

Our Name

This option allows customer to have the Gourmet Gardens Brand Logo - Either with or without the customer's information at the bottom of the label.

@foreach($ourName as $label )
{!! Form::radio('label', $label->id) !!}

{{$label->name}}

@endforeach

Your Name

This is what we call the "Name Drop" label - Which allows customer's name and information.

@foreach($yourName as $label )
{!! Form::radio('label', $label->id) !!}

{{$label->name}}

@endforeach

Your Existing Label

Only select this option if you have already setup a label before. We will look into your most recent label design.

{!! Form::radio('label', 'existing') !!}

Use Existing Label

{!! Form::submit('Continue', ['class'=>'btn btn-warning']) !!}
{!! Form::close() !!}
@endsection