File: D:/HostingSpaces/SBogers10/honger.komma.pro/resources/views/site/pages/ip.blade.php
@extends('site.master')
@section('content')
<header class="main">
{{-- Content --}}
<div class="contained-layout">
<div class="intro col-10 centered">
<h1>{!!__('site/ip.intro.title')!!}</h1>
{!!__('site/ip.intro.description',['ipAddress' => Request::ip()])!!}
</div>
<div class="form-holder col-10 centered">
{!! Form::open(['url' => 'ip/store']) !!}
{{-- Name --}}
@include('site.partials.form.text',['key'=>'name'])
{{-- Company name --}}
@include('site.partials.form.text',['key'=>'company'])
{!! Form::submit('Verzenden') !!}
{!! Form::token() !!}
{!! Form::close() !!}
</div>
</div>
@include('site.partials.headerDrips')
</header>
@endsection
@section('footer_button')
@include('site.partials.footerButton',[
'label' => "Gesprek plannen",
'href' => "/gesprek-plannen"])
@endsection