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/topswtw.komma.pro/app/views/maintenance/thanks.blade.php
@extends('layouts.master')

@section('background')
    <div class="bg-50"></div>
@stop


@section('headerWhite')
    @include('maintenance.headerWhite')
@stop


@section('sidebar')
    @if($usp)
@section('sellingPoints')
    {{$usp->trans_description}}
@stop
@endif
@include('partials.sidebar',
    ['customerService' => (object)
        [
            'name'  => 'Gerard',
            'url'   => 'gerard'
        ],
        'phone'=> Config::get('komma/tops.maintenance_telephone.'.\Shop::getDomainCountry('iso_2') ),
        'telLink'=> Config::get('komma/tops.maintenance_telephone.'.\Shop::getDomainCountry('iso_2').'+' )
    ])
@stop

@section('brandNavigationBar')
    @include('partials.brandNavigationBar')
@stop

@section('content')
    <div class="content-container column fluid-100">
        <!-- Breadcrumb -->

        @include('partials.breadcrumb')

                <!-- Title -->

        <h1 class="page-title">{{ $entity->name }}</h1>

        <article class="text-block content-block column fluid-100">
            <div class="description column">
                {{$entity->description}}
            </div>
            <div class="description last column">
                @if($customerStatus == 'new' || $customerStatus == 'link' )
                    {{Form::open()}}

                    {{Form::hidden('customerStatus', $customerStatus)}}
                    {{Form::hidden('maintenance_order', $maintenanceOrder->id)}}

                    @if($customerStatus == 'link')
                        <h2 class="title">{{ Lang::get('pages/maintenance.link_account.title') }}</h2>

                        <p>{{ Lang::get('pages/maintenance.link_account.description') }}</p>

                        <div class="input-holder {{ $errors->first('email',' error') }}">
                            {{ Form::label('email', Lang::get('form.email')) }}
                            {{ Form::text('email', $maintenanceOrder->invoice_email) }}
                            {{ $errors->first('email', '<span class="error">:message</span>') }}
                        </div>
                        <div class="input-holder {{ $errors->first('password',' error') }}">
                            {{ Form::label('password', Lang::get('form.password')) }}
                            {{ Form::password('password') }}
                            {{ $errors->first('password', '<span class="error">:message</span>') }}
                        </div>
                        <div class="btn-holder">
                            @include('partials.buttons.input',[
                                'input' =>  Form::submit(),
                                'text' => Lang::get('pages/maintenance.link_account.button')
                            ])
                        </div>
                    @elseif($customerStatus == 'new')
                        <h2 class="title">{{ Lang::get('pages/maintenance.create_account.title') }}</h2>
                        <p>{{ Lang::get('pages/maintenance.create_account.description') }}</p>

                        <div class="input-holder {{$errors->first('password',' error') }}">
                            {{ Form::label('password', Lang::get('form.password') ) }}
                            @if(isset($checkout))
                                {{ Form::password('password', $checkout->shipping()->get('password')) }}
                            @else
                                {{ Form::password('password') }}
                            @endif

                            {{ $errors->first('password','<span class="error">:message</span>') }}
                        </div>

                        <div class="input-holder {{ $errors->first('password_confirmation','error' )}}">
                            {{ Form::label('password_confirmation', Lang::get('form.password_confirmation')) }}

                            {{ Form::password('password_confirmation') }}
                            {{ $errors->first('password_confirmation', '<span class="error">:message</span>') }}
                        </div>
                        <div class="btn-holder">
                            @include('partials.buttons.input',[
                                'input' =>  Form::submit(),
                                'text' => Lang::get('pages/maintenance.create_account.button')
                            ])
                        </div>

                    @endif
                    {{form::close()}}
                @elseif($customerStatus == 'confirmation')
                    <h2>{{Lang::get('checkout/thanks.title')}}</h2>
                    <p>{{$confirmation}}</p>
                @endif

            </div>


            @if( ! empty($images))
                @foreach($images as $image)
                    <figure>
                        <img src="{{ $image->large_image_url }}" alt="{{ $entity->name }}"/>
                    </figure>
                @endforeach
            @endif
            {{Form::close()}}
        </article>
    </div>

@stop

@section('benefits')
@stop