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/SBogers110/franciscaansebeweging.nl/app/views/layouts/pages/subscribe.blade.php
@extends('layouts.master')

@section('sideHeader')

    @include('layouts.partials.about.subMenu')

@endsection


@section('editable_content')

    <div class="after-menu">

        @include('layouts.partials.header')

        @include('layouts.partials.subscribe.description')

        {{--@include('forms.subscribe')--}}

        @include('layouts.partials.webshopTextButton', [
            'webshopButtonDescription' => trans('translations.subscribeWebshopDescription'),
            'webshopButtonLink' => \Config::get('business.subscribeWebshopLink')
        ])

        @include('layouts.partials.becomeFriend')

    </div>

@endsection

@section('extra-js')
    <script type="text/javascript" src="/js/form.js"></script>
    <script>

        //Define form
        var subscribeForm = new Form('subscribeForm', ['firstName', 'lastName',  'street',  'houseNumber',  'city', 'zip', 'email', 'phone', 'accountNumber']);

        // Submit button
        document.querySelector('#subscribeForm .submit').addEventListener('click', function () {

            subscribeForm.validate();
            if(subscribeForm.valid) subscribeForm.send();

        });

    </script>
@endsection