@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
@foreach($types as $key => $type)
id == $lead_registration->lead_type_id)
selected
@endif
>{{ $type->name }}
@endforeach
@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
@foreach($type_descriptions as $key => $type_description)
id == $lead_type_description->lead_type_description_id)
selected
@endif
@endforeach
>{{ $type_description->name }}
@endforeach
@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