@extends('layouts.admin') @section('title', 'Edit Service - ' . $service->name) @section('content')

Edit Service

Manage Variants Back
@csrf @method('PUT')
Basic Information
Category cannot be changed after creation
Pricing & Duration
Service Images
@if($service->featured_image)
Current Image
Current featured image
@endif
Upload new image to replace current one
@if($service->gallery_images && is_array($service->gallery_images) && count($service->gallery_images) > 0)
Current Gallery Images:
@foreach($service->gallery_images as $index => $image)
Gallery {{ $index + 1 }}
@endforeach
@endif
Add new gallery images
Settings
mobile_service ? 'checked' : '' }}>
requires_appointment ? 'checked' : '' }}>
certified_service ? 'checked' : '' }}>
is_available ? 'checked' : '' }}>
is_featured ? 'checked' : '' }}>
Manage Variants Cancel
@endsection