@extends('backEnd.master') @section('title') @lang('fees.fees_settings') @endsection @section('mainContent')

@lang('fees.fees_invoice_settings')

{{ Form::model($feesInvoice, ['class' => 'bg-white p-4 rounded', 'route' => ['directFees.feesInvoiceUpdate'], 'method' => 'post']) }}
{{ Form::text('prefix', null, ['autocomplete' => 'off', 'class' => 'primary_input_field form-control'. ($errors->has('prefix') ? ' is-invalid' : '')]) }} {{ Form::label('prefix', __('fees.prefix')."*") }} @error('prefix') {{ $message }} @enderror
{{ Form::text('start_form', null, ['autocomplete' => 'off', 'class' => 'primary_input_field form-control'. ($errors->has('start_form') ? ' is-invalid' : '')]) }} {{ Form::label('start_form', __('fees.start_form')."*") }} @error('start_form') {{ $message }} @enderror
{{ Form::close() }}

@lang('fees.payment_reminder_settings')

{{ Form::model($paymentReminder, ['class' => 'bg-white p-4 rounded', 'route' => ['directFees.paymentReminder'], 'method' => 'POST']) }} @php $data = json_decode($paymentReminder->notification_types); @endphp
{{ Form::text('due_date_before', null, ['autocomplete' => 'off', 'class' => 'primary_input_field form-control'. ($errors->has('due_date_before') ? ' is-invalid' : '')]) }} {{ Form::label('due_date_before', __('fees.due_date_before')) }} @error('due_date_before') {{ $message }} @enderror

@lang('fees.notification_type')

{{ Form::close() }}
@endsection @push('script') @endpush