@extends('layouts.admin') @section('title', 'Edit Service') @section('page_heading', 'Edit Service') @section('page_actions') Back to Services @endsection @section('content')
@csrf @method('PUT')

One feature per line. Click "Add Feature" to add more.

@foreach (old('features', $service->features ?? []) as $feature)
@endforeach @if (!old('features') && empty($service->features))
@endif
$

Danger Zone

Deleting a service is permanent and cannot be undone.

@csrf @method('DELETE')
@endsection @push('scripts') @endpush