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