@extends('layouts.user', ['header' => true, 'nav' => true, 'demo' => true, 'settings' => $settings]) {{-- Custom CSS --}} @section('css') @endsection @php $defaultImage = ""; foreach ($themes as $value => $theme) { if ($value == 0) { $defaultImage = url("backend/img/vCards/".$theme->theme_thumbnail); } } @endphp @section('content')
{{ __('Overview') }}
{{ __('Create New WhatsApp Store') }}
@csrf {{-- Create Card --}}
{{ __('Choose a theme') }}
{{ __('Card Color') }}
{{ __('Language') }}
*
@foreach(config('app.languages') as $langLocale => $langName)
{{ $langName }} ({{ strtoupper($langLocale) }})
@endforeach
@if ($plan_details->personalized_link)
{{ __('Personalized Link') }}
{{ URL::to('/') }}
@endif
{{ __('Banner') }}
({{ __('Recommended : 1920 x 550 pixels') }})
store_banner}} accept=".jpeg,.jpg,.png,.gif,.svg" />
{{ __('Logo') }}
({{ __('Recommended: 512 x 512 pixels') }})
store_logo}} accept=".jpeg,.jpg,.png,.gif,.svg" />
{{ __('Store name') }}
{{ __('Store greeting') }}
{{ __('Currency') }}
@foreach ($currencies as $currency)
{{ $currency->name }} ({{ $currency->symbol }})
@endforeach
{{ __('WhatsApp Number') }}
{{ __('WhatsApp Footer Text') }}
{{ __('Thanks for shopping with us.') }}
{{ __('Submit & Next') }}
@include('user.includes.footer')
{{-- Choose a theme modal --}}
{{ __('Themes') }}
@foreach ($themes as $theme)
first ? 'checked' : '' }} required />
{{ $theme->theme_name }}
@endforeach
{{-- Custom JS --}} @push('custom-js') @endpush @endsection