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

@yield('title')

@endsection @section('content')
{{ csrf_field() }}
{{ __('Image Settings') }}
{{-- Favicon --}}
{{ Form::label('web_favicon', __('Favicon'), ['class' => 'form-label col-12 ']) }} @if (isset($getWebSettings['web_favicon']) && $getWebSettings['web_favicon'] != '')
Image
@endif
{{-- Main Logo --}}
{{ Form::label('web_logo', __('Main Logo'), ['class' => 'form-label col-12 ']) }} @if (isset($getWebSettings['web_logo']) && $getWebSettings['web_logo'] != '')
Image
@endif
{{-- Placeholder Image --}}
{{ Form::label('web_placeholder_logo', __('Placeholder Image'), ['class' => 'form-label col-12 ']) }} @if (isset($getWebSettings['web_placeholder_logo']) && $getWebSettings['web_placeholder_logo'] != '')
Image
@endif
{{-- Footer Logo --}}
{{ Form::label('web_footer_logo', __('Footer Logo'), ['class' => 'form-label col-12 ']) }} @if (isset($getWebSettings['web_footer_logo']) && $getWebSettings['web_footer_logo'] != '')
Image
@endif
{{-- Iframe Link For Web --}}
{{ __('Iframe Link For Web') }}
{{ __('Social Media Links') }}
{{-- Facebook ID --}}
{{-- Instagram ID --}}
{{-- Twitter ID --}}
{{-- Youtube ID --}}
{{ __('More Settings') }}
{{-- Facility Background --}}
{{-- Sell Color --}}
{{-- Sell Background --}}
{{-- Rent Color --}}
{{-- Rent Background --}}
{{-- Maintenance Mode --}}
{{-- Allow Cookies --}}
@endsection @section('script') @endsection