@extends('admin.layouts.app') @section('title', 'Business Setup') @section('content')

Business Setup

Configure your business settings and preferences

@if(session('success'))

{{ session('success') }}

@endif @if(session('error'))

{{ session('error') }}

@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Basic Information

@if($businessSettings['business_logo']) Current Logo @endif

Upload a new logo (JPEG, PNG, GIF - Max 2MB)

System Settings

Feature Settings

Maintenance Mode

Put the site in maintenance mode

Allow Registration

Allow new user registrations

Email Notifications

Send email notifications

SMS Notifications

Send SMS notifications

@endsection