@extends('user.layouts.index', ['header' => true, 'nav' => true, 'demo' => true, 'settings' => $settings]) @section('css') @php $googleFonts = [ 'Poppins', 'Roboto', 'Inter', 'League Spartan', 'Rethink Sans', 'Outfit', 'Figtree', 'Teachers', 'Saira Stencil One', 'Gloock', 'Pacifico', 'Playfair Display', ]; @endphp {{-- Google Fonts CDN --}} @foreach ($googleFonts as $font) @endforeach {{-- Font Classes --}} @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' => 'customization', ])
@php $custom_styles = json_decode($business_card->custom_styles, true); @endphp
{{-- Customization Form --}}
{{-- Header Section --}}

{{ __('Header Section') }}

{{-- Profile Section --}}
{{ __('Profile Layout') }}
@php $layouts = ['row', 'column']; @endphp @foreach ($layouts as $layout) @endforeach
{{-- Profile Image Style --}}
{{ __('Profile Image Style') }}
@php $profileImageStyles = ['circle', 'square', 'rounded']; @endphp @foreach ($profileImageStyles as $profileImageStyle) @endforeach
{{-- Title Color --}}
{{ __('Title Color') }}
{{-- Sub Title Color --}}
{{ __('Subtitle Color') }}
{{-- Description Color --}}
{{ __('Description Color') }}
{{-- Body Section --}}

{{ __('Body Section') }}

{{-- Font --}}
{{ __('Font') }}
@php $fonts = [ 'Pacifico', 'Poppins', 'Roboto', 'Inter', 'Arial', 'Times New Roman', 'Spartan', 'Rethink Sans', 'Outfit', 'Figtree', 'Teachers', 'Saira Stencil One', 'Gloock', 'Playfair Display', ]; $fontClasses = [ 'Pacifico' => 'pacifico', 'Poppins' => 'poppins', 'Roboto' => 'roboto', 'Inter' => 'inter', 'Arial' => 'arial', 'Times New Roman' => 'times-new-roman', 'Spartan' => 'spartan', 'Rethink Sans' => 'rethink-sans', 'Outfit' => 'outfit', 'Figtree' => 'figtree', 'Teachers' => 'teachers', 'Saira Stencil One' => 'saira-stencil-one', 'Gloock' => 'gloock', 'Playfair Display' => 'playfair-display', ]; @endphp @foreach ($fonts as $font) @endforeach
{{-- Background Styles --}}
{{ __('Background Style') }}
@php $bg_styles = ['single_color', 'gradient', 'image']; @endphp
@foreach ($bg_styles as $bg_style) @endforeach
{{-- Single Color Background --}}
{{ __('Background Color') }}
{{-- Gradient Background --}}
{{ __('Gradient From Color') }}
{{ __('Gradient To Color') }}
{{-- Background Image --}}
{{ __('Background Image') }}
{{-- Heading Color Background --}}
{{ __('Heading Color') }}
{{-- Card Edge --}}
{{ __('Card Style') }}
@php $cardEdges = ['square', 'rounded']; @endphp @foreach ($cardEdges as $cardEdge) @endforeach
{{-- Button Style --}}

{{ __('Button Styles') }}

{{-- Button Background Type --}}
{{ __('Button Background Type') }}
@php $button_bg_styles = ['single_color', 'gradient']; @endphp
@foreach ($button_bg_styles as $button_bg_style) @endforeach
{{-- Button Background Color --}}
{{ __('Button Background Color') }}
{{-- Button Gradient Background Color --}}
{{ __('Gradient From Color') }}
{{ __('Gradient To Color') }}
{{-- Button Icon Color Section --}}
{{ __('Button Icon Color') }}
{{-- Button Text Color Section --}}
{{ __('Button Text Color') }}
{{-- Button Style Section --}}
{{ __('Button Edge') }}
@php $buttonEdges = ['rounded', 'rectangle']; @endphp @foreach ($buttonEdges as $buttonEdge) @endforeach
{{-- Bottom Bar --}}

{{ __('Bottom Bar') }}

{{-- Bottom Bar Color --}}
{{ __('Bottom Bar Color') }}
{{-- Preview --}}

{{ __('Preview') }}

@include('user.includes.footer')
{{-- Custom JS --}} @push('custom-js') @endpush @endsection