@extends('admin.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

{{ __('Preloader') }}



@if (!empty($data->preloader)) Preloader @else ... @endif


{{ __('Choose Image') }}

{{ __('JPG, PNG, JPEG, GIF, SVG images are allowed') }}

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

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

@endif

{{ __('Set Timezone') }}


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

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

@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
@endsection