@extends('layouts.app') @section('title', 'Edit Service') @section('content')
{{-- Error Messages --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT') @include('services._form', ['service' => $service])
Cancel
@endsection