@extends('backend.master') @section('title', 'Contribution Settings') @section('content')
{{-- Validation Errors --}} @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
{{-- Monthly Contribution --}}
Please enter a valid monthly contribution amount.
{{-- Penalty Per Day --}}
Please enter a valid penalty per day.
{{-- Due Day --}}
Due day must be between 1 and 31.
{{-- Grace Day --}}
Grace day must be between 1 and 31.
{{-- Buttons --}}
All Contributions
{{-- Client-side validation --}} @endsection