@extends('layouts.app') @section('content')
Website Information
{{ html()->form('POST', route('setting.store'))->open() }}
{{ html()->label('Title')->class('form-label')->for('title') }} {{ html()->text('title')->class('form-control')->value(setting('title'))->placeholder('Enter Title') }}
{{ html()->label('Footer - About Us')->class('form-label')->for('description') }} {{ html()->textarea('description')->class('form-control')->value(setting('description'))->placeholder('Enter Description')->rows(5) }}
{{ html()->label('Footer - Copyright')->class('form-label')->for('copyright') }} {{ html()->text('copyright')->class('form-control')->value(setting('copyright'))->placeholder('Enter Copyright Text') }}
{{ html()->label('Phone')->class('form-label')->for('phone') }} {{ html()->text('phone')->class('form-control')->value(setting('phone'))->placeholder('Enter Phone') }}
{{ html()->label('Mobile')->class('form-label')->for('mobile') }} {{ html()->text('mobile')->class('form-control')->value(setting('mobile'))->placeholder('Enter Mobile') }}
{{ html()->label('Email')->class('form-label')->for('email') }} {{ html()->email('email')->class('form-control')->value(setting('email'))->placeholder('Enter Email') }}
{{ html()->label('Office - Working Days')->class('form-label')->for('working_days') }} {{ html()->text('working_days')->class('form-control')->value(setting('working_days'))->placeholder('Enter Working Days') }}
{{ html()->label('Office - Working Hours')->class('form-label')->for('working_hours') }} {{ html()->text('working_hours')->class('form-control')->value(setting('working_hours'))->placeholder('Enter Working Hours') }}
{{ html()->label('Logo')->class('form-label')->for('logo') }}
{{ html()->label('Logo - White')->class('form-label')->for('logo_white') }}
{{ html()->label('Fav Icon')->class('form-label')->for('favicon') }}
{{ html()->label('Website URL')->class('form-label')->for('website_url') }} {{ html()->text('website_url')->class('form-control')->value(setting('website_url'))->placeholder('Enter Website URL') }}
{{ html()->label('Zip Code')->class('form-label')->for('zipcode') }} {{ html()->text('zipcode')->class('form-control')->value(setting('zipcode'))->placeholder('Enter Zip Code') }}
{{ html()->label('Location')->class('form-label')->for('location') }} {{ html()->text('location')->class('form-control')->value(setting('location'))->placeholder('Enter Office Location') }}
{{ html()->label('Google Map Iframe')->class('form-label')->for('map') }} {!! html()->textarea('map')->class('form-control')->value(setting('map'))->placeholder('Enter Google Map Iframe')->rows(5) !!}
{{ html()->label('Meta Title')->class('form-label')->for('meta_title') }} {{ html()->text('meta_title')->class('form-control')->value(setting('meta_title'))->placeholder('Enter Meta Title') }}
{{ html()->label('Meta Keywords')->class('form-label')->for('meta_keywords') }} {{ html()->textarea('meta_keywords')->class('form-control')->value(setting('meta_keywords'))->placeholder('Enter Meta Keywords')->rows(3) }}
{{ html()->label('Meta Description')->class('form-label')->for('meta_description') }} {{ html()->textarea('meta_description')->class('form-control')->value(setting('meta_description'))->placeholder('Enter Meta Description')->rows(5) }}
{{ html()->label('Recaptcha Site Key')->class('form-label')->for('recaptcha_site_key') }} {{ html()->text('recaptcha_site_key')->class('form-control')->value(setting('recaptcha_site_key'))->placeholder('Enter Recaptcha Site Key') }}
{{ html()->label('Recaptcha Secret Key')->class('form-label')->for('recaptcha_secret_key') }} {{ html()->text('recaptcha_secret_key')->class('form-control')->value(setting('recaptcha_secret_key'))->placeholder('Enter Recaptcha Secret Key') }}
{{ html()->checkbox('enable_reCaptcha')->class('form-check-input me-1')->value(1)->checked(setting('enable_reCaptcha') == 1) }} {{ html()->label('Enable reCAPTCHA')->class('form-label') }}
{{ html()->label('Facebook')->class('form-label')->for('facebook') }} {{ html()->text('facebook')->class('form-control')->value(setting('facebook'))->placeholder('Enter Facebook Link') }}
{{ html()->label('Youtube')->class('form-label')->for('youtube') }} {{ html()->text('youtube')->class('form-control')->value(setting('youtube'))->placeholder('Enter Youtube Link') }}
{{ html()->label('Instagram')->class('form-label')->for('instagram') }} {{ html()->text('instagram')->class('form-control')->value(setting('instagram'))->placeholder('Enter Instagram Link') }}
{{ html()->label('Twitter')->class('form-label')->for('twitter') }} {{ html()->text('twitter')->class('form-control')->value(setting('twitter'))->placeholder('Enter Twitter Link') }}
{{ html()->label('Linkedin')->class('form-label')->for('linkedin') }} {{ html()->text('linkedin')->class('form-control')->value(setting('linkedin'))->placeholder('Enter Linkedin Link') }}
{{ html()->label('Whatsapp')->class('form-label')->for('whatsapp') }} {{ html()->text('whatsapp')->class('form-control')->value(setting('whatsapp'))->placeholder('Enter Whatsapp Link') }}
{{ html()->label('Tiktok')->class('form-label')->for('tiktok') }} {{ html()->text('tiktok')->class('form-control')->value(setting('tiktok'))->placeholder('Enter Tiktok Link') }}
{{ html()->label('President')->class('form-label')->for('president') }} {{ html()->text('president')->class('form-control')->value(setting('president'))->placeholder('Enter President Name') }}
{{ html()->label('Preloader')->class('form-label')->for('preloader_check') }} {{ html()->select('preloader_check', ['1' => 'Enable', '0' => 'Disable'])->class('form-select choices-select')->value(setting('color')) }}
{{ html()->label('Theme')->class('form-label')->for('color') }} {{ html()->input($type = 'color', $name = 'color')->class('form-control')->value(setting('color')) }}
{{ html()->label('Other Image')->class('form-label')->for('other_image') }}
{{ html()->label('Frontend Theme')->class('form-label')->for('theme') }} {{ html()->input($type = 'color', $name = 'theme')->class('form-control')->value(setting('theme')) }}
{{ html()->form()->close() }}
@endsection