@extends('layouts.main') @section('title') {{$title}} @stop @section('description') {{$desc}} @stop @section('content')
Dior Dior
Fill in the form
to register
@if(Session::has('notification'))
{{ Session::get('notification')['text'] }}
@endif
{{ Form::open(['route' => ['post_registration'],'class' => 'form-registration']) }}
{{ Form::text('firstname',Input::old('firstname'),['id'=>'firstname','class'=>($errors->first('firstname')) ? 'error' : 'ok']) }}
{{ Form::text('surname',Input::old('surname'),['id'=>'surname','class'=>($errors->first('surname')) ? 'error' : 'ok']) }}
{{ Form::text('email',Input::old('email'),['id'=>'email','class'=>($errors->first('email')) ? 'error' : 'ok']) }}
{{ Form::select('month_date_of_birth',$months,Input::old('month_date_of_birth'),['class'=>($errors->first('month_date_of_birth')) ? 'month error' : 'month ok']) }} {{ Form::select('day_date_of_birth',$days,Input::old('day_date_of_birth'),['class'=>($errors->first('day_date_of_birth')) ? 'day error' : 'day ok']) }} {{ Form::select('year_date_of_birth',$years,Input::old('year_date_of_birth'),['class'=>($errors->first('year_date_of_birth')) ? 'year error' : 'year ok']) }}
{{ Form::text('nationality',Input::old('nationality'),['id'=>'nationality','class'=>($errors->first('nationality')) ? 'error' : 'ok']) }}
{{ Form::text('passport_number',Input::old('passport_number'),['id'=>'passport_number','class'=>($errors->first('passport_number')) ? 'error' : 'ok']) }}
{{ Form::select('month_passport',$months,Input::old('month_passport'),['class'=>($errors->first('month_passport')) ? 'month error' : 'month ok']) }} {{ Form::select('day_passport',$days,Input::old('day_passport'),['class'=>($errors->first('day_passport')) ? 'day error' : 'day ok']) }} {{ Form::select('year_passport',$years_passport,Input::old('year_passport'),['class'=>($errors->first('year_passport')) ? 'year error' : 'year ok']) }}
{{ Form::text('address',Input::old('address'),['id'=>'address','class'=>($errors->first('address')) ? 'error' : 'ok']) }} {{ Form::text('address_bis',Input::old('address_bis')) }}
{{ Form::text('city',Input::old('city'),['id'=>'city','class'=>($errors->first('city')) ? 'error' : 'ok']) }}
{{ Form::text('zip_code',Input::old('zip_code'),['id'=>'zip_code','class'=>($errors->first('zip_code')) ? 'error' : 'ok']) }}
{{ Form::text('country',Input::old('country'),['id'=>'country','class'=>($errors->first('country')) ? 'error' : 'ok']) }}
{{ Form::text('date_airport',Input::old('date_airport'),['id'=>'date_airport','class'=>($errors->first('date_airport')) ? 'error' : 'ok']) }}

We will book your flights according to the Convention agenda: outbound on February 3rd / outward on February 5th

{{ Form::radio('invitation_letter','y',Input::old('invitation_letter'),['id'=>'invitation_letter_y']) }} {{ Form::radio('invitation_letter','n',Input::old('invitation_letter'),['id'=>'invitation_letter_n']) }}
{{ Form::textarea('comment',Input::old('comment'),['placeholder'=>'Leave a comment','class'=>'last-textarea']) }}
You will be in twin bedrooms. We offer you the possibility to chose the person you want to share the room with. Please indicate the firstname and surname of this person:
{{ Form::text('firstname_second',Input::old('firstname_second'),['id'=>'firstname_second']) }}
{{ Form::text('surname_second',Input::old('surname_second'),['id'=>'surname_second']) }}
{{ Form::radio('dietary_restrictions','Végétarien',Input::old('dietary_restrictions'),['id'=>'dietary_restrictions_vegetarian']) }}
{{ Form::radio('dietary_restrictions','Pas de porc',Input::old('dietary_restrictions'),['id'=>'dietary_restrictions_no_pork']) }}
{{ Form::radio('dietary_restrictions','Kasher',Input::old('dietary_restrictions'),['id'=>'dietary_restrictions_kasher']) }}
{{ Form::radio('dietary_restrictions','Autre',Input::old('dietary_restrictions'),['id'=>'dietary_restrictions_other']) }}
{{ Form::radio('dietary_restrictions','Sans gluten',Input::old('dietary_restrictions'),['id'=>'dietary_restrictions_gluten_free']) }}
{{ Form::radio('dietary_restrictions','Halal',Input::old('dietary_restrictions'),['id'=>'dietary_restrictions_halal']) }}
{{ Form::radio('dietary_restrictions','Sans lactose',Input::old('dietary_restrictions'),['id'=>'dietary_restrictions_lactose_free']) }}
{{ form::textarea('desc_dietary_restrictions',Input::old('desc_dietary_restrictions'),['placeholder'=>'Please right down any other dietary restriction or allergy you may have']) }}
I want to participate to the following activity on Wednesday 3rd (Please choose only one) *
{{ Form::radio('activity','Moroccan art and craft tour',Input::old('activity'),['id'=>'activity_1']) }}
{{ Form::radio('activity','Marrakech history tour',Input::old('activity'),['id'=>'activity_2']) }}
{{ Form::radio('activity','Cooking class at a Medina\'s Palace',Input::old('activity'),['id'=>'activity_3']) }}
{{ Form::radio('activity','9 hole golf game',Input::old('activity'),['id'=>'activity_4']) }}
{{ Form::radio('activity','Camel ride in the Marrakech Palm grove, 14H30 - 16H00 + free time',Input::old('activity'),['id'=>'activity_5']) }}
{{ Form::radio('activity','Camel ride in the Marrakech Palm grove, free time + 16H00 - 17H30',Input::old('activity'),['id'=>'activity_6']) }}
{{ Form::radio('activity','Golf lesson',Input::old('activity'),['id'=>'activity_7']) }}
{{ Form::close() }} If you want to
extend your stay
in Marrakech,
please contact
diorconvention2016@spiceup.fr
within 48 hours after
your registration
@stop