@extends('layouts.greetings', [ 'title' => 'Send a Wish', 'bodyClass' => 'theme theme--' . $theme, 'fontUrl' => $fontUrl, 'bodyStyle' => $bodyStyle, ]) @section('content')

Send a wish

For {{ $greeting->recipient_name }}

Pick a gift and send a short wish back.

@if ($wishSent)

Your wish was sent. Thank you.

@endif
@csrf
@error('sender_name')

{{ $message }}

@enderror
@error('message')

{{ $message }}

@enderror

Choose a gift

@foreach ($giftOptions as $value => $label) @endforeach
@error('gift_choice')

{{ $message }}

@enderror
Skip for now
@endsection