@extends('index-registration') @section('content')
@if($event->lang == 'hr')

Registracija

@else

Registration

@endif
{{ Form::model($lead_registration, array('class' => 'tab-content form-horizontal form-bordered')) }}
@if($event->lang == 'hr')

1. Osobne informacije

@else

1. Personal Information

@endif @if($event->lang == 'hr')
{{ Form::label('title', 'Titula', array('class' => 'control-label')) }} {{ Form::text('title', null, array('class' => 'form-control')) }}
{{ Form::label('first_name', 'Ime', array('class' => 'control-label')) }} {{ Form::text('first_name', null, array('class' => 'form-control')) }}
{{ Form::label('last_name', 'Prezime', array('class' => 'control-label')) }} {{ Form::text('last_name', null, array('class' => 'form-control')) }}
@else
{{ Form::label('title', 'Title', array('class' => 'control-label')) }} {{ Form::text('title', null, array('class' => 'form-control')) }}
{{ Form::label('first_name', 'First Name', array('class' => 'control-label')) }} {{ Form::text('first_name', null, array('class' => 'form-control')) }}
{{ Form::label('last_name', 'Last Name', array('class' => 'control-label')) }} {{ Form::text('last_name', null, array('class' => 'form-control')) }}
@endif
@if($event->lang== 'hr') {{ Form::label('gender', 'Spol', array('class' => 'control-label')) }} @else {{ Form::label('gender', 'Gender', array('class' => 'control-label')) }} @endif
@if($event->lang == 'hr')

2. Kotizacija

@else

2. Registration Fee

@endif
@if($event->lang == 'hr') {{ Form::label('ticket_type_id', 'Ulaznica', array('class' => 'control-label')) }} @else {{ Form::label('ticket_type_id', 'Ticket', array('class' => 'control-label')) }} @endif
@php $accompany_persons = false; $promo_codes = false; @endphp
@if($lead_registration->ticket_type_id)

{{ $selected_price }}

@else

0,00

@endif

{{ ' ' . $currency }}

@if($event->lang == 'hr') PDV je uključen u cijenu. @else VAT included. @endif

@if($event->lang == 'hr') Napomena: Ova karta namijenjena je isključivo osobama u pratnji! @else Note: This ticket is intended exclusively for accompanying person! @endif

@if($event->lang == 'hr') Napomena: Za ovu kartu potrebno je imati promocijski kod! @else Note: Promotional code needs to be entered for this ticket! @endif

@php($invalid_promo_code = false) @if(count($errors) > 0) @foreach($errors->all() as $error) @if($error == 'invalid-promo-code') @php($invalid_promo_code = true) @endif @endforeach @endif
@if($event->lang == 'hr') {{ Form::label('ticket_promo_code', 'Promocijski kod', array('class' => 'control-label')) }} {{ Form::text('ticket_promo_code', null, array('class' => 'form-control')) }} @else {{ Form::label('ticket_promo_code', 'Promotional Code', array('class' => 'control-label')) }} {{ Form::text('ticket_promo_code', null, array('class' => 'form-control')) }} @endif @if($invalid_promo_code) @if($event->lang == 'hr') Promocijski kod nije ispravan! @else Promotional code is not valid! @endif @endif
@if($social_events) @endif
@if($event->lang == 'hr')

3. Kontakt informacije

{{ Form::label('email', 'E-mail', array('class' => 'control-label')) }} {{ Form::text('email', null, array('class' => 'form-control', 'readonly')) }}
{{ Form::label('mobile', 'Broj mobitela', array('class' => 'control-label')) }} {{ Form::text('mobile', null, array('class' => 'form-control')) }}
{{ Form::label('phone', 'Broj telefona', array('class' => 'control-label')) }} {{ Form::text('phone', null, array('class' => 'form-control')) }} @else

3. Contact Info

{{ Form::label('email', 'E-mail', array('class' => 'control-label')) }} {{ Form::text('email', null, array('class' => 'form-control', 'readonly')) }}
{{ Form::label('mobile', 'Mobile Number', array('class' => 'control-label')) }} {{ Form::text('mobile', null, array('class' => 'form-control')) }}
{{ Form::label('phone', 'Phone Number', array('class' => 'control-label')) }} {{ Form::text('phone', null, array('class' => 'form-control')) }} @endif
@if($event->lang == 'hr')

4. Informacije o tvrtki

{{ Form::label('company_name', 'Ime tvrtke', array('class' => 'control-label')) }} {{ Form::text('company_name', null, array('class' => 'form-control')) }}
{{ Form::label('job_function', 'Radno mjesto', array('class' => 'control-label')) }} {{ Form::text('job_function', null, array('class' => 'form-control')) }}
{{ Form::label('company_address', 'Adresa', array('class' => 'control-label')) }} {{ Form::text('company_address', null, array('class' => 'form-control')) }}
{{ Form::label('company_city', 'Grad', array('class' => 'control-label')) }} {{ Form::text('company_city', null, array('class' => 'form-control')) }}
{{ Form::label('company_post_code', 'Poštanski broj', array('class' => 'control-label')) }} {{ Form::text('company_post_code', null, array('class' => 'form-control')) }}
{{ Form::label('company_country', 'Država', array('class' => 'control-label')) }} {{ Form::select('company_country', $countries, null, ['placeholder' => 'Select title', 'class' => 'form-control']) }} @else

4. Company Info

{{ Form::label('company_name', 'Company Name', array('class' => 'control-label')) }} {{ Form::text('company_name', null, array('class' => 'form-control')) }}
{{ Form::label('job_function', 'Job Position', array('class' => 'control-label')) }} {{ Form::text('job_function', null, array('class' => 'form-control')) }}
{{ Form::label('company_address', 'Address', array('class' => 'control-label')) }} {{ Form::text('company_address', null, array('class' => 'form-control')) }}
{{ Form::label('company_city', 'City', array('class' => 'control-label')) }} {{ Form::text('company_city', null, array('class' => 'form-control')) }}
{{ Form::label('company_post_code', 'Postal Code', array('class' => 'control-label')) }} {{ Form::text('company_post_code', null, array('class' => 'form-control')) }}
{{ Form::label('company_country', 'Country', array('class' => 'control-label')) }} {{ Form::select('company_country', $countries, null, ['placeholder' => 'Select title', 'class' => 'form-control']) }} @endif
@if (count($types) > 0 && $settings->lead_types)
@if($event->lang == 'hr') {{ Form::label('lead_type', 'Tip', array('class' => 'control-label')) }} @else {{ Form::label('lead_type', 'Type', array('class' => 'control-label')) }} @endif
@endif @if (count($type_descriptions) > 0 && $settings->lead_type_descriptions)
@if($event->lang == 'hr') {{ Form::label('lead_type_descriptions[]', 'Opis tipa', array('class' => 'control-label')) }} @else {{ Form::label('lead_type_descriptions[]', 'Type Descriptions', array('class' => 'control-label')) }} @endif
@endif
@if($event->lang == 'hr') {{ Form::label('note', 'Bilješka', array('class' => 'control-label')) }} {{ Form::text('note', null, array('class' => 'form-control')) }} @else {{ Form::label('note', 'Note', array('class' => 'control-label')) }} {{ Form::text('note', null, array('class' => 'form-control')) }} @endif
{{ Form::close() }}
@if($event->lang == 'hr') @else @endif
@if($event->lang == 'hr') {!! JsValidator::formRequest('App\Http\Requests\Registration\GeneralInformationHR') !!} @else {!! JsValidator::formRequest('App\Http\Requests\Registration\GeneralInformation') !!} @endif @endsection