@extends('client.layouts.app') @section('title', __('client.services.request_cancellation')) @section('content')
{{ __('client.actions.warning') }}: {{ __('client.services.cancel_warning') }}: {{ $service->product?->name ?? 'Service' }} @if($service->domain) — {{ $service->domain }}@endif
{{ __('client.services.cancellation_request') }}
@if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf
{{ __('common.actions.cancel') }}
@endsection