@extends('user.layouts.index', ['header' => true, 'nav' => true, 'demo' => true, 'settings' => $settings]) {{-- Custom CSS --}} @section('css') @endsection @section('content')
{{-- Failed --}} @if(Session::has("failed")) @endif {{-- Success --}} @if(Session::has("success")) @endif

{{ __('Update Business Card') }}

{{-- Nav links --}} @include('user.pages.edit-cards.includes.nav-link', ['link' => 'advanced'])
@csrf

{{ __('Advanced Settings') }}

@if ($plan_details->password_protected == 1) {{-- Password protected --}}
{{ __('Disable Password Protection') }}
@endif @if ($plan_details->advanced_settings == 1) {{-- Enable/Disable PWA --}}
{{ __('Enable PWA') }}
@endif

{{ __('Set Password Protection') }}

{{-- Show password --}} {{ __('Show Password') }}
{{-- Advanced settings --}} @if ($plan_details->advanced_settings == 1)

{{ __('Custom CSS / JS') }}

{{-- SEO Configuration Settings --}}

{{ __('SEO Configuration Settings') }}

@php $seoConfig = isset($business_card->seo_configurations) ? json_decode($business_card->seo_configurations) : null; @endphp {{-- Favicon --}}
{{ __('Favicon') }}
{{-- Meta title --}}
{{ __('Meta Title') }}
{{-- Meta description --}}
{{ __('Meta Description') }}
{{-- Meta keywords --}}
{{ __('Meta Keywords') }}
@endif
@include('user.includes.footer')
{{-- Password Protected --}} @push('custom-js') @endpush @endsection