@extends('layouts.app') @section('title', 'Respond to Enquiry') @section('content')

Respond to {{ ucfirst(str_replace('_', ' ', $enquiry->type)) }} Enquiry

@csrf @if(in_array($enquiry->type, ['loan_application', 'refund', 'withdraw_savings', 'deduction_add', 'retirement', 'benefit_from_disasters', 'withdraw_deposit', 'buy_shares']))
@endif @if($enquiry->type == 'loan_application' || $enquiry->type == 'refund')
@endif @if($enquiry->type == 'loan_application')
@endif @if($enquiry->type == 'deduction_add')
@endif @if($enquiry->type == 'retirement')
@endif @if($enquiry->type == 'benefit_from_disasters')
@endif @if($enquiry->type == 'unjoin_membership')
@endif
@endsection