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/ehbo.today/resources/views/site/auth/login.blade.php
@extends('site.master')

@section('content')
    @if(!Auth::check())
        <div class="login centered">
            <div class="placeholder">
                <form action="{{ route('site.login') }}" method="POST">
                    {{ csrf_field() }}
                    {{ method_field('POST') }}

                    <h1>@lang('site/global.loginHeader') - {{ config('app.name') }}</h1>

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

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


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

                    <label>@lang('site/certificates.number.label') of @lang('site/global.emailAddress')</label>
                    <input type="text" name="certificate_number_or_email" value="{{old('certificate_number_or_email')}}"> <!--See SiteLoginController's username method -->
                    <label>@lang('auth.password')</label>
                    <input type="password" name="password" value="{{old('password')}}">


                    <input type="submit" value="@lang('auth.log_in')">

                </form>
                <p class="registerLink ">@lang('site/global.registerPrefix')<a href="https://www.ehbocranendonck.nl/contact">@lang('site/global.registerLink')</a></p>
            </div>
            <a class="forgotPassword" href="{{route('site.password.request')}}"><span class="icon lock yellow">@include('svg.icons.lock')</span><p>@lang('auth.forgot_password')</p></a>
        </div>
    @endif
@endsection