@extends('frontend.layouts.landing') @section('title', 'Enter to Win - ' . app_name()) @push('head-area') @endpush @section('content')
{{ app_name() }}
πŸŽ‰πŸ† Win Big in Our Raffle Extravaganza! πŸ†πŸŽ‰
Ready to conquer the ultimate raffle challenge? Brace yourself for an adrenaline-fueled ride, where you could snatch not one, not two, but THREE incredible prizes worth over $590! πŸš€πŸ†
🌟 Triple Your Triumph: More prizes, more excitement – it's your time to shine!
πŸ”₯ Multiply Your Entries: The more you enter, the closer you get to victory. Stack those odds in your favor!
🎊 Don't just dream it – WIN it! Join the frenzy now and make destiny dance to your tune.
Let's make this raffle rumble! Enter, share, and let's light up the excitement together. 🌠🎊
{{--
Also, make sure to do the following to grab more chances of winning!
1. Like us on Facebook:
2. Follow us on Instagram and Twitter
3. Why not LinkedIN?
4. Don’t just stop! Invite your Veterinarian buddies and reach the highest score.
Don’t just stop! Invite your Veterinarian buddies and reach the highest score.
Hurry up! Waiting for a lot of fun, maximum entries, great scores and the Lucky winner.
--}}
Winners will be announced on August 23rd, 2023, at 10:00 AM.
ENTER TO WIN
@include('includes.partials.messages') {!! Form::open(array('method' => 'POST', 'id' => 'frm_enter_to_win')) !!}
{!! Form::label('email', 'Email Address:') !!} * {!! Form::text('email', null, ['type' => 'email', 'required' => 'required', 'class' => 'form-control', 'placeholder' => 'Enter email address ...', 'id' => 'sp_email']) !!}
{!! Form::label('first_name', 'First Name:') !!} * {!! Form::text('first_name', null,['class'=>'form-control', 'required' => 'required', 'placeholder'=>'Enter first name ...']) !!}
{!! Form::label('last_name', 'Last Name:') !!} * {!! Form::text('last_name', null,['class'=>'form-control', 'required' => 'required', 'placeholder'=>'Enter last name ...']) !!}
{!! Form::label('company', 'Company:') !!} {!! Form::text('company', null,['class'=>'form-control', 'placeholder'=>'Enter company name ...']) !!}
{!! Form::label('phone', 'Phone:') !!} * {!! Form::text('phone', null,['class'=>'form-control', 'required' => 'required', 'placeholder'=>'Enter phone ...']) !!}
{!! Form::label('city', 'City:') !!} {!! Form::text('city', null,['class'=>'form-control', 'placeholder'=>'Enter city ...']) !!}
{!! Form::label('state', 'State:') !!} {!! Form::select('state', $data['states'] ,null ,['class'=>'form-control', 'required' => 'required', 'placeholder'=>'Please Select ...']) !!}
{!! Form::label('zip', 'Zip / Post Code:') !!} {!! Form::text('zip', null,['class'=>'form-control', 'placeholder'=>'Enter zip / post code ...']) !!}
{!! Form::label('role', 'Your Role:') !!} * {!! Form::select('role', ['Veterinarian' => 'Veterinarian', 'Dentist' => 'Dentist', 'Technician' => 'Technician', 'Office Manager' => 'Office Manager', 'Clinic Owner' => 'Clinic Owner', 'Associated with Hospital' => 'Associated with Hospital', 'Other' => 'Other'] ,null ,['class'=>'form-control', 'required' => 'required', 'placeholder'=>'Please Select ...']) !!}
{!! Form::label('comments', 'Additional Comments:') !!} {!! Form::textarea('comments', null,['class'=>'form-control', 'placeholder'=>'Additional Comments ...', 'rows' => '3']) !!}
{!! Form::close() !!}
@push('after-scripts') @endpush @endsection