@extends('frontend.layout') @section('pageHeading') @if (!empty($pageHeading)) {{ $pageHeading->customer_login_page_title ?? __('Customer Login') }} @else {{ __('Customer Login') }} @endif @endsection @php $metaKeywords = !empty($seo->meta_keyword_customer_login) ? $seo->meta_keyword_customer_login : ''; $metaDescription = !empty($seo->meta_description_customer_login) ? $seo->meta_description_customer_login : ''; @endphp @section('meta-keywords', "{{ $metaKeywords }}") @section('meta-description', "$metaDescription") @section('hero-section')
@endsection @section('content')
@php $input = request()->input('redirected'); @endphp @if (!onlyDigitalItemsInCart()) @if ($input == 'checkout') @endif @endif @php $event_setting = App\Models\BasicSettings\Basic::select('event_guest_checkout_status')->first(); @endphp @if ($event_setting->event_guest_checkout_status == 1) @if (request()->input('redirectPath') == 'event_checkout') @endif @endif
@endsection