@extends('layouts.app') @section('title', 'Settings') @section('content')

Settings

Manage your business information and branding

@include('partials.alerts')
@csrf @method('PUT')
@error('business_name')
{{ $message }}
@enderror This name will appear in the sidebar header
@if($logo_path)

Current Logo:

Current Logo
@else

No logo uploaded

@endif
@error('logo')
{{ $message }}
@enderror Upload your business logo (Max: 2MB, Formats: JPG, PNG, GIF, SVG)
Digital Marketing Names

Create and manage dynamic names for digital marketing tasks.

Add New Digital Marketing Name
@csrf
@error('name')
{{ $message }}
@enderror
Existing Digital Marketing Names
@if($digital_marketing_names->count() > 0)
@foreach($digital_marketing_names as $name) @endforeach
Name Status Action
@csrf @method('PUT')
@if($name->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
@else

No digital marketing names created yet.

@endif
@endsection