HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/immoginis.komma.pro/app/views/properties/form_offer.blade.php
<div class="hide">
    {{--{{Form::label('city')}}
    {{Form::text('city', (null !== Input::Segment(2)?\Input::Segment(2):\Input::get('city')),['id'=>'cityField'])}}--}}

    {{Form::select('available',['0'=>'Kies beschikbaarheid','1'=>'Beschikbaar', '2'=> 'verhuurd/verkocht'],Input::get('available'))}}
    {{ Form::submit('Zoeken') }}
    <div id="min_price_get">@if(Input::get('min_price')!=null){{Input::get('min_price')}}@else 0 @endif</div>
    <div id="max_price_get">@if(Input::get('max_price')!=null){{Input::get('max_price')}}@else 0 @endif</div>
</div>

<div class="orange-search">
    <div class="content-container">
        <div id="locationField">
            <span class="search"></span>
            {{--<input id="autocomplete" placeholder="@lang('translations.locationFieldHeader')" type="text" value="{{ (null !== Input::Segment(2)?\Input::Segment(2):\Input::get('city'))  }}"/>--}}
{{--            {{Form::select('city', $cities['sale'], (null !== Input::Segment(2)?\Input::Segment(2):\Input::get('city')), ['id' =>'cityField'])}}--}}
{{--            {{Form::select('citySet', $citySets, \Input::get('citySet'), ['id' =>'citySetField'])}}--}}

            <select id="citySetField" name="citySet">
                @foreach($citySets as $citySet)
                    <option value="{{ $citySet->id }}" @if(\Input::get('citySet') == $citySet->id) selected @endif>{{ $citySet->label }}</option>
                @endforeach
            </select>

        </div>

        <div id="priceField">
            {{Form::select('goal',['0'=> 'Beide','sale'=>'Te Koop', 'rent'=> 'Te Huur'],Input::get('goal'), ['id' =>'goal_property'])}}

            <div class="hide">
                <span class="before">Van</span>{{Form::select('min_price',['0'=>'€ 0','50000'=>'€ 50.000', '100000'=> '€ 100.000', '150000'=> '€ 150.000', '200000'=> '€ 200.000', '250000'=> '€ 250.000', '300000'=> '€ 300.000', '350000'=> '€ 350.000', '400000'=> '€ 400.000', '450000'=> '€ 450.000'],Input::get('min_price'), ['id' =>'min_price'])}}<span class="arrow"></span>


            <span class="before">Tot</span>{{Form::select('max_price',['0'=>trans('translations.noMax'),'50000'=>'€ 50.000', '100000'=> '€ 100.000', '150000'=> '€ 150.000', '200000'=> '€ 200.000', '250000'=> '€ 250.000', '300000'=> '€ 300.000', '350000'=> '€ 350.000', '400000'=> '€ 400.000', '450000'=> '€ 450.000'],Input::get('max_price'), ['id' =>'max_price'])}}<span class="arrow"></span>
            </div>
            <div class="clear"></div>
        </div>

        <div id="submitButton">
            <p>@lang('translations.submitButton')</p>
        </div>

        <a class="o-free-estimation-button" href="/gratis-schatting">
            Gratis schatting
        </a>

    </div>
</div>