@extends('layouts.main') @section('title') {{ __('System Settings') }} @endsection @section('page-title')

@yield('title')

@endsection @section('content')
{{--
--}} {!! Form::open(['route' => 'store-settings', 'data-parsley-validate', 'class' => 'create-form', 'data-success-function'=> "formSuccessFunction",'enctype' => 'multipart/form-data']) !!} {{ csrf_field() }}
{{ __('Company Details') }}
{{-- Company Name --}}
{{-- Email --}}
{{-- Contact Number 1 --}}
{{-- Contact Number 2 --}}
{{-- Latitude --}}
{{-- Longitude --}}
{{ __('More Settings') }}
{{-- Countries --}}
{{-- Currency Symbol --}}
{{-- Default Language --}}
{{-- Timezone --}}
{{-- Min Radius Range --}}
{{-- Max Radius Range --}}

{{-- Unsplash API Key --}}
{{-- Place API Key --}}
{{-- Playstore App link --}}
{{-- Appstore App link --}}
{{-- Number With Suffix --}}
{{-- Change Icon Colors to theme Color --}}
{{-- Distance Options --}}
{{-- System Color --}}
{{-- Web URL --}}
{{-- Text after property submission --}}
{{-- Auto Approve Edited Listings --}}
{{-- Login Methods --}}
{{ __('Login Methods') }}
{{-- Number with OTP Login Toggle --}}
{{-- OTP Services Provider --}} {{-- Social Login Toggle --}}
{{-- Paypal Settings --}}
{{ __('Paypal Setting') }}
{{-- Paypal Business ID --}}
{{-- Paypal Webhook URL --}}
{{-- Paypal Currency Symbol --}}
{{-- Status --}}
{{-- Sandbox Mode --}}
{{-- Razorpay Setting --}}
{{ __('Razorpay Setting') }}
{{-- Razorpay key --}}
{{-- Razorpay Webhook URL --}}
{{-- Razorpay Secret --}}
{{-- Status --}}
{{-- Razorpay Webhook Secret --}}
{{-- Paystack Setting --}}
{{ __('Paystack Setting') }}
{{-- Paystack Secret key --}}
{{-- Paystack Webhook URL --}}
{{-- Paystack Currency Symbol --}}
{{-- Status --}}
{{-- Paystack Public key --}}
{{-- Stripe Setting --}}
{{ __('Stripe Setting') }}
{{-- Stripe publishable key --}}
{{-- Stripe Webhook URL --}}
{{-- Stripe Currency Symbol --}}
{{-- Status --}}
{{-- Stripe Secret key --}}
{{-- Stripe Secret key --}}
{{-- Flutterwave Setting --}}
{{ __('Flutterwave Setting') }}
{{-- Public Key --}}
{{-- Secret Key --}}
{{-- Encryption key --}}
{{-- Flutterwave Webhook URL --}}
{{-- Flutterwave Currency Symbol --}}
{{-- Status --}}
{{-- Bank Details Setting --}}
{{ __('Bank Details Setting') }}
{{-- Enable Bank Details --}}
{{-- Bank Details Fields --}}
{{-- Title --}}
{{-- Value --}}
{{-- Delete --}}
{{-- Add Field --}}
{{-- Deep Link Setting --}}
{{ __('Deep Link Settings') }}
{{ __('Note: Please add your scheme here using a single word in lowercase (e.g., ebroker).') }}
{{ __('Images') }}
{{-- Favicon --}}
{{ Form::label('favicon_icon', __('Favicon Icon'), ['class' => 'form-label col-12 ']) }} @if (isset($systemSettings['favicon_icon']) && $systemSettings['favicon_icon'] != '')
Image
@endif
{{-- Company Logo --}}
{{ Form::label('company_logo', __('Comapany Logo'), ['class' => 'form-label col-12 ']) }} @if (isset($systemSettings['company_logo']) && $systemSettings['company_logo'] != '')
Image
@endif
{{-- Login Page Image --}}
{{ Form::label('login_image', __('Login Page Image'), ['class' => 'form-label col-12 ']) }} @if (isset($systemSettings['login_image']) && $systemSettings['login_image'] != '')
Image
@else
Image
@endif
{!! Form::close() !!}
@endsection @section('script') @endsection