@extends('backend.layout') @section('content')
@csrf
{{ __('Update General Settings') }}

{{ __('Information') }}


@if ($errors->has('website_title'))

{{ $errors->first('website_title') }}

@endif

@if (!empty($data->favicon)) favicon @else ... @endif
{{ __('Choose Image') }}
@if ($errors->has('favicon'))

{{ $errors->first('favicon') }}

@endif

{{ __('Upload 40X40 pixel size image or squre size image for best quality.') }}


@if (!empty($data->logo)) logo @else ... @endif
{{ __('Choose Image') }}
@if ($errors->has('logo'))

{{ $errors->first('logo') }}

@endif

{{ __('Theme & Home') }}


@if ($errors->has('theme_version'))

{{ $errors->first('theme_version') }}

@endif

{{ __('Currency') }}


@if ($errors->has('base_currency_symbol'))

{{ $errors->first('base_currency_symbol') }}

@endif
@if ($errors->has('base_currency_symbol_position'))

{{ $errors->first('base_currency_symbol_position') }}

@endif
@if ($errors->has('base_currency_text'))

{{ $errors->first('base_currency_text') }}

@endif
@if ($errors->has('base_currency_text_position'))

{{ $errors->first('base_currency_text_position') }}

@endif
{{ __('1 USD =') }}
{{ $data->base_currency_text }}
@if ($errors->has('base_currency_rate'))

{{ $errors->first('base_currency_rate') }}

@endif

{{ __('Website Appearance') }}


@if ($errors->has('primary_color'))

{{ $errors->first('primary_color') }}

@endif
@if ($errors->has('secondary_color'))

{{ $errors->first('secondary_color') }}

@endif
@if ($errors->has('breadcrumb_overlay_color'))

{{ $errors->first('breadcrumb_overlay_color') }}

@endif
@if ($errors->has('breadcrumb_overlay_opacity'))

{{ $errors->first('breadcrumb_overlay_opacity') }}

@endif

{{ __('This will decide the transparency level of the overlay color.') }}
{{ __('Value must be between 0 to 1.') }}
{{ __('Transparency level will be lower with the increment of the value.') }}

@endsection