@extends('layouts.app') @section('title', 'Edit Gift') @section('heading', 'Edit Gift') @section('subheading', 'Update record for ' . $gift->item_name) @section('topbar_actions') Back to Details @endsection @section('content')
@csrf @method('PUT')
Edit Gift Registration
Modify the information about the gift and the donor
@error('item_name'){{ $message }}@enderror
@error('donor_name'){{ $message }}@enderror
@error('donor_phone'){{ $message }}@enderror
@foreach(['pledged' => '⏳ Pledged', 'received' => '📦 Received', 'cancelled' => '✕ Cancelled'] as $val => $lbl) @endforeach
Cancel
@endsection