@extends('layouts.app') @section('content')

Create New Brand Setting

Back to Brand Settings
@csrf
Unique identifier (e.g., 'site_name', 'primary_color') @error('key')
{{ $message }}
@enderror
Human-readable name for this setting @error('label')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
@error('category')
{{ $message }}
@enderror
@error('value')
{{ $message }}
@enderror
Optional description explaining what this setting controls @error('description')
{{ $message }}
@enderror
Order within category (0 = first) @error('sort_order')
{{ $message }}
@enderror
Public settings are visible on frontend pages

Setting Types Guide:
  • Text: Simple text input (site name, tagline, etc.)
  • Email: Email address with validation
  • URL: Website URL with validation
  • Color: Color picker for brand colors
  • Boolean: Yes/No toggle switches
  • Image: Image URL or file upload
  • JSON: Complex data structures
@endsection