@extends('layout.main') @section('content')

{{ isset($penalty->id) ? 'Edit Fine' : 'Add New Fine' }}

{{ __('Status') }} @switch($loan->level_status_id) @case(0) Pending @break @case(1) Approved @break @case(3) Declined @break @endswitch {{ __('Amount') }} {{ number_format($loan->loan_amount) }} {{ __('Loan Type') }} {{ $loan->loan_type->product_name }} {{ __('Client') }} {{ $loan->client->fullname }} {{ __('Loan Officer') }} {{ $loan->officers->fullname }} {{ __('Interest Rate') }} {{ $loan->interest_rate }} %
@csrf @if (isset($penalty->id)) @method('PUT') @endif
{{__('Cancel')}}
@endsection