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/Eurotools/euro-tools.nl/resources/views/errors/403.blade.php
@extends('site.emptyMaster')

@section('header-content')
    @include('site.svg.key')
    <h1>@lang('site/global.onlyForClients')</h1>
    <h2>@lang('site/global.becomeClientAndBenefit')</h2>
@endsection

@section('content')
    <div class="grid-col forbidden-form">
        <div class="grid-row white-box">
            <div class="grid-col left">
                <h3>
                    {!! __('site/global.wantAccess') !!}
                </h3>
                <h4>@lang('site/global.registerBecomeClient')</h4>
                <form class="form" action="/{{ $links->register->route}}" id="contactForm">
                    <div class="name form-element ">
                        <span class="error-message {{($errors->has('name')? 'active' :'')}}">{{$errors->first('name')}}</span>

                        <label for="name">@lang('site/form.company.label')</label>
                        <input type="text" id="name" name="name" placeholder="@lang('site/form.company.placeholder')"
                               value="{{ old('name', '') }}"/>
                    </div>
                    <div class="submit">
                        <label>
                            <input type="submit" value="registreren">
                            @include('site.svg.icon.person')
                            @lang('site/global.register')
                        </label>
                    </div>
                </form>
            </div>
            <div class="grid-col right">
                <h4>@lang('site/global.alreadyClient')</h4>
                <form action="{{ route('site.login.'.\App::getLanguage()->iso_2) }}" class="form" method="POST">
                    {{ method_field('POST') }}
                    {{ csrf_field() }}

                    @if($errors->has('message'))
                        <div class="alert warning">
                            {!! $errors->first('message') !!}
                        </div>
                    @endif

                    @if($errors->any())
                        <div class="alert warning">
                            {!! $errors->first() !!}
                        </div>
                    @endif


                    @if(Session::has('success'))
                        <div class="alert success">
                            {!! Session::get('success')->first() !!}
                        </div>
                    @endif

                    {!! Form::text('email', null, ['placeholder' => __('site/form.email.label')]) !!}
                    {!! Form::password('password', ['placeholder' => __('auth.password')]) !!}

                    <div class="submit">
                        <label>
                            <input type="submit" value="{{__('site/global.login')}}">
                            @include('site.svg.icon.person')
                            @lang('site/global.login')
                        </label>
                    </div>
                </form>

                <a class="forgot_pass" href="{{route('site.password.request.'.\App::getLanguage()->iso_2)}}">@lang('auth.forgot_password')</a>
            </div>
        </div>
    </div>
@endsection