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

Validacija e-maila

@else

Validate E-mail

@endif @else @if($event->lang == 'hr')

Unos e-maila

@else

Insert E-mail

@endif @endif
{{ Form::open(array('url' => getenv('APP_URL') . '/registration/' . $event->event_code)) }}
@if($event->lang == 'hr') @if($registration_type == 'normal')

Kako biste nastavili s registracijom, molimo Vas unesite vašu e-mail adresu.

@elseif($registration_type == 'email')

Kako biste nastavili s registracijom, molimo Vas potvrdite Vašu e-mail adresu:
{{ $email }}

@elseif($registration_type == 'manual')

Kako bi nastavili s ručnom registracijom, molimo Vas upišite e-mail adresu željene osobe.

@endif @else @if($registration_type == 'normal')

To proceed with registration, please insert your email address

@elseif($registration_type == 'email')

To proceed with registration, please confirm if this is Your email address:
{{ $email }}

@elseif($registration_type == 'manual')

To proceed with manual registration, please insert leads email address

@endif @endif @if($registration_type == 'email')
{{ Form::text('email', $email, array('class' => 'form-control', 'style' => 'display: none;')) }}
@elseif($registration_type == 'normal' || $registration_type == 'manual')
{{ Form::text('email', null, array('class' => 'form-control')) }}
@endif @if($registration_type == 'normal') @if($event->lang == 'hr') {{ Form::submit('Pošalji mi poveznicu za registraciju', array('class' => 'btn btn-inline-block krik-registration-email-button', 'style' => 'background-color: ' . $event->background_color . '; color: ' . $event->titles_color)) }} @else {{ Form::submit('Send me link to the registration page', array('class' => 'btn btn-inline-block krik-registration-email-button', 'style' => 'background-color: ' . $event->background_color . '; color: ' . $event->titles_color)) }} @endif @elseif($registration_type == 'email') @if($event->lang == 'hr') {{ Form::submit("Da, to sam ja", array('class' => 'btn btn-inline-block krik-registration-email-button', 'style' => 'background-color: ' . $event->background_color . '; color: ' . $event->titles_color)) }} @else {{ Form::submit("Yes, that's me", array('class' => 'btn btn-inline-block krik-registration-email-button', 'style' => 'background-color: ' . $event->background_color . '; color: ' . $event->titles_color)) }} @endif @elseif($registration_type == 'manual') @if($event->lang == 'hr') {{ Form::submit('Započni registraciju', array('class' => 'btn btn-inline-block krik-registration-email-button', 'style' => 'background-color: ' . $event->background_color . '; color: ' . $event->titles_color)) }} @else {{ Form::submit('Start registration', array('class' => 'btn btn-inline-block krik-registration-email-button', 'style' => 'background-color: ' . $event->background_color . '; color: ' . $event->titles_color)) }} @endif @endif @if($event->lang == 'hr') @if($registration_type == 'normal')

Napomena: Ako ne vidite e-mail, možda se nalazi u neželjenoj pošti ili u smeću.

@elseif($registration_type == 'manual')

Ova opcija je dostupna samo administratorima. Nijedan e-mail neće biti poslan u ovome procesu.

@endif @else @if($registration_type == 'normal')

Note: If You don't see it, it might be in the junk or spam mailbox.

@elseif($registration_type == 'manual')

This option is only available for administrators. No emails will be sent in this process.

@endif @endif
{{ Form::close() }}
@if($event->lang == 'hr') {!! JsValidator::formRequest('App\Http\Requests\Registration\EmailHR') !!} @else {!! JsValidator::formRequest('App\Http\Requests\Registration\Email') !!} @endif @endsection