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

Add New Service

Services / Add New
@if($errors->any())
Please fix:
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf
{{-- LEFT --}}
{{-- Category --}}
@error('service_category_id')
{{ $message }}
@enderror
{{-- Name --}}
@error('name')
{{ $message }}
@enderror
{{-- Description --}}
{{-- Includes --}}
One item per line — shown as checklist

{{-- Price + Time --}}
Rs
@error('base_price')
{{ $message }}
@enderror
min
{{-- Sort + Active --}}
Status
Visible to customers
{{-- Buttons --}}
{{-- RIGHT: Preview --}}
Live Preview
Select a category
Service Name
{{-- Price & Time --}}
Base Price
Rs 0
Est. Time
— min
Active
{{-- Description --}} {{-- Includes --}}
Fill in the form to see preview
Tips
  • Use clear, customer-friendly service names
  • "What's Included" builds customer trust
  • Accurate estimated time helps scheduling
  • Inactive services won't show to customers
@endsection