@include('layouts/form_errors')
{!! Form::open(array( 'url' => 'salvonews/subscribe', 'autocomplete' => 'off')) !!}
Email Address:
{!! Form::text('email', null, ['placeholder' => 'Enter your email here', 'class' => 'form-control']) !!}
First name:
{!! Form::text('first_name', null, ['placeholder' => 'Enter your first name here', 'class' => 'form-control']) !!}
Last name:
{!! Form::text('last_name', null, ['placeholder' => 'Enter your lastname here', 'class' => 'form-control']) !!}
Country
@include('blocks.selectbox-countries', [
'countries' => $countries,
'name' => 'country_id'
])
Interests
{!! Form::checkbox('interests[]', 'Garden', false) !!} Garden
{!! Form::checkbox('interests[]', 'Fashion', false) !!} Fashion
{!! Form::checkbox('interests[]','Fine architectural', false) !!} Fine architectural
{!! Form::checkbox('interests[]', 'Recraft & upcycling', false) !!} Recraft & upcycling
{!! Form::checkbox('interests[]', 'Reclaimed building materials', false) !!} Reclaimed building materials
{!! Form::checkbox('interests[]', 'Salvage', false) !!} Salvage
{!! NoCaptcha::display() !!}
{!! Form::close() !!}