@extends('layouts.app') @section('content')

Edit Fund - {{ $fund->name }}

@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('custodian_id')
{{ $message }}
@enderror
is_active) ? 'checked' : '' }}>
Note: Initial amount cannot be changed after fund creation. Current initial amount: ${{ number_format($fund->initial_amount, 2) }}
Cancel
@endsection