@extends('layouts.app') @section('meta-title'){{ $page->seo_title }} @endsection @section('meta-keywords'){{ $page->seo_keywords }} @endsection @section('meta-description'){{ $page->seo_description }} @endsection @section('meta-image'){{ $page->getFirstMediaUrl('seo_image', 'thumbnail') }} @endsection @section('content') {{--Szükséges inputok:--}} {{--customer_tax_number--}} {{--customer_email (required)--}} {{--customer_phone (required)--}} {{--customer_billing_name (required)--}} {{--customer_billing_postal_code (required)--}} {{--customer_billing_city (required)--}} {{--customer_billing_address (required)--}} {{--customer_delivery_name (required)--}} {{--customer_delivery_postal_code (required)--}} {{--customer_delivery_city (required)--}} {{--customer_delivery_address (required)--}} {{--payment_type (ez lehet: "Bankkártya" vagy "Utánvét")--}}
@csrf

Számlázási adatok

1.)

Számlázási adatok

{{-- customer_billing_name --}} @include('webshop.includes.cart.input_text', ['name' => 'customer_billing_name', 'class' => 'mask-nonnumeric', 'required' => true, 'default' => session('billing_information.customer_billing_name'), 'data' => ['label-default' => __("validation.attributes.customer_name")."*", 'label-company' => __("validation.attributes.customer_name_company")."*"], 'placeholder' => 'Teljes név']) {{-- customer_billing_address --}} @include('webshop.includes.cart.input_text', ['name' => 'customer_billing_address', 'required' => true, 'default' => session('billing_information.customer_billing_address'), 'placeholder' => 'Cím.']) {{-- customer_billing_city + customer_billing_postal_code --}}
@include('webshop.includes.cart.input_text', ['name' => 'customer_billing_city', 'class' => 'mask-nonnumeric', 'required' => true, 'default' => session('billing_information.customer_billing_city'), 'placeholder' => 'Város', 'label' => '', 'show_label' => false])
@include('webshop.includes.cart.input_text', ['name' => 'customer_billing_postal_code', 'required' => true, 'default' => session('billing_information.customer_billing_postal_code'), 'class' => 'mask-postcode', 'placeholder' => 'Irsz.', 'label' => '', 'show_label' => false])
{{-- customer_tax_number --}} @include('webshop.includes.cart.input_text', ['name' => 'customer_tax_number', 'class' => 'mask-tax-number', 'required' => false, 'default' => session('billing_information.customer_tax_number'), 'placeholder' => 'Adószám cég esetén', 'label' => 'Adószám cég esetén'])
2.)

Szállítási adatok és mód

{{-- customer_delivery_name --}} @include('webshop.includes.cart.input_text', ['name' => 'customer_delivery_name', 'class' => 'mask-nonnumeric', 'required' => true, 'default' => session('billing_information.customer_delivery_name'), 'data' => ['label-default' => __("validation.attributes.customer_name")."*", 'label-company' => __("validation.attributes.customer_name_company")."*"], 'placeholder' => 'Teljes név']) {{-- customer_delivery_address --}} @include('webshop.includes.cart.input_text', ['name' => 'customer_delivery_address', 'required' => true, 'default' => session('billing_information.customer_delivery_address'), 'placeholder' => 'Cím.']) {{-- customer_delivery_city + customer_delivery_postal_code --}}
@include('webshop.includes.cart.input_text', ['name' => 'customer_delivery_city', 'class' => 'mask-nonnumeric', 'required' => true, 'default' => session('billing_information.customer_delivery_city'), 'placeholder' => 'Város', 'label' => '', 'show_label' => false])
@include('webshop.includes.cart.input_text', ['name' => 'customer_delivery_postal_code', 'required' => true, 'default' => session('billing_information.customer_delivery_postal_code'), 'class' => 'mask-postcode', 'class' => 'mask-postcode', 'placeholder' => 'Irsz.', 'label' => '', 'show_label' => false])
{{-- customer_email --}} @if(!auth()->check()) @include('webshop.includes.cart.input_email', ['name' => 'customer_email', 'class' => 'mask-email', 'default' => session('billing_information.customer_email'), 'label' => 'E-mail*']) @endif {{-- customer_phone --}} @include('webshop.includes.cart.input_text', ['name' => 'customer_phone', 'class' => 'mask-mobile', 'required' => true, 'default' => session('billing_information.customer_phone'), 'placeholder' => 'Telefonszám'])
3.)

Fizetés

{!! Form::radio('payment_type', 'Bankkártya', true, ["class" => "custom-control-input", "id" => "input-payment_type-1"]) !!}

Tudomásul veszem, hogy a(z) Aha Marketing Kft. (1139 Budapest, Röppentyű u. 65.) adatkezelő által a(z) https://feherdieta.hu felhasználói adatbázisában tárolt alábbi személyes adataim átadásra kerülnek az OTP Mobil Kft., mint adatfeldolgozó részére. Az adatkezelő által továbbított adatok köre az alábbi: név, email cím, számlázási cím

Az adatfeldolgozó által végzett adatfeldolgozási tevékenység jellege és célja a SimplePay Adatkezelési tájékoztatóban, az alábbi linken tekinthető meg: http://simplepay.hu/vasarlo-aff

{!! Form::radio('payment_type', 'Banki átutalás', true, ["class" => "custom-control-input", "id" => "input-payment_type-2"]) !!}
{!! Form::radio('payment_type', 'Utánvét', true, ["class" => "custom-control-input", "id" => "input-payment_type-3"]) !!}
@endsection