@extends('layouts.app') @section('page_logo', $data['page']['logo']) @if(app()->getLocale() == 'se') @section('page_title', $data['page']['se_title']) @section('page_description', $data['page']['se_description']) @php $checkout_title = 'Kassa'; $customerName = 'Namn'; $customerEmail = 'E-post'; $customerMobile = 'Mobil'; $customerStreet = 'Gata'; $customerStreet2 = 'Gata 2'; $customerPostCode = 'Postnummer'; $customerCity = 'Stad'; $createBtn = 'Skapa bokning'; $cancelBtn = 'Avbryt'; @endphp @else @section('page_title', $data['page']['en_title']) @section('page_description', $data['page']['en_description']) @php $checkout_title = 'Checkout'; $customerName = 'Name'; $customerEmail = 'Email'; $customerMobile = 'Mobile'; $customerStreet = 'Street'; $customerStreet2 = 'Street 2'; $customerPostCode = 'Post Code'; $customerCity = 'City'; $createBtn = 'Create booking'; $cancelBtn = 'Cancel'; @endphp @endif @section('content')

{{$checkout_title}}

@csrf
@endsection @section('extra-script') @endsection