@extends('admin.layouts.app') @section('title', 'Add Service Category') @section('content')
{{-- Header --}}

Add New Service Category

Service Categories / Add New
@if($errors->any())
Please fix:
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf
{{-- LEFT: Form --}}
{{-- Name --}}
@error('name')
{{ $message }}
@enderror
{{-- Icon --}}
{{ old('icon', '🔧') }}
Click the icon to pick an emoji
Choose an emoji that represents this service category
{{-- Emoji Picker Panel --}}

{{-- Sort + Active --}}
Lower = shown first
Status
Visible to users
{{-- Description --}}
{{-- Buttons --}}
{{-- RIGHT: Preview --}}
Live Preview
🔧
Category Name
category-name
Active
{{-- Quick icon suggestions --}}
Quick Pick
@foreach(['🔧','🛞','⚙ïļ','ðŸ”Đ','ðŸ›Ēïļ','🚗','🔋','❄ïļ','🔌','ðŸ’Ļ','🊛','ðŸ”Ķ','🏎ïļ','ðŸšŋ','ðŸ›Ąïļ','🔑'] as $e) @endforeach
Tips
  • Use a relevant emoji for quick visual identification
  • Keep names short and descriptive
  • Sort order 0 appears first in the list
  • Inactive categories won't show to customers
@endsection