@extends('adminlte::page') @section('title', 'Settings') @section('content_header')

Dashboard

@stop @section('content') @if (session('success'))
{{ session('success') }}
@endif
@if ($setting->dark_logo)
@endif
@if ($setting->logo)
@endif {{ $setting->bname }}
@if (count($errors) > 0)
Whoops! There were some problems with your input.
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@error('bname') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
Example: USD (use only abbreviation) @error('currency') {{ $message }} @enderror
Put whatsapp number with country code without space, Ex: 919865322154
Adress will be visible on contact page
Put google map iframe code, keep in mind website contact page map section height and width;

Google Captcha

captcha['login_form'] ?? false ? 'checked' : '' }}>   disable/enable the captcha for login page and forgot password page
captcha['contact_form'] ?? false ? 'checked' : '' }}>   disable/enable the captcha for contact form on website

One Signal - Push Notifications

onesignal['status'] ?? false ? 'checked' : '' }}>

User Registration

user_registration ?? false ? 'checked' : '' }}> (New User Registration)

Maintainence Mode

maintenance_mode ?? false ? 'checked' : '' }}> (Website shows under maintainence)

SMTP

This email shall send notification emails
Site title for google
Put SEO keywords for your site
SEO description here
{{-- social login --}}

Login with Google

Ex: https://www.yoursite.com/google/callback
social_login['google']['status'] ?? false ? 'checked' : '' }}>

Login with Facebook

Ex: https://www.yoursite.com/facebook/callback
social_login['facebook']['status'] ?? false ? 'checked' : '' }}>
@stop @section('js') {{-- --}} @stop