芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/tblonline.org/resources/views/backend/loan/edit.blade.php
@extends('layouts.app') @section('content')
{{ _lang('Update Loan Information') }}
@if($loan->status == 1)
{{ _lang('Loan has already approved. You can change only description and remarks') }}
@endif
{{ csrf_field()}}
{{ _lang('Loan ID') }}
status == 1 ? 'disabled' : 'required' }}>
{{ _lang('Loan Product') }}
status == 1 ? 'disabled' : 'required' }}>
{{ _lang('Select One') }}
{{ create_option('loan_products','id','name',$loan->loan_product_id, array('status=' => 1)) }}
{{ _lang('Borrower') }}
status == 1 ? 'disabled' : 'required' }}>
{{ _lang('Select One') }}
@foreach(get_table('users',array('user_type='=>'customer')) as $user )
{{ $user->email .' ('. $user->name . ')' }}
@endforeach
{{ _lang('Currency') }}
status == 1 ? 'disabled' : 'required' }}>
{{ _lang('Select One') }}
{{ create_option('currency','id','name','',array('status=' => 1)) }}
{{ _lang('First Payment Date') }}
status == 1 ? 'disabled' : 'required' }}>
{{ _lang('Release Date') }}
status == 1 ? 'disabled' : 'required' }}>
{{ _lang('Applied Amount') }}
status == 1 ? 'disabled' : 'required' }}>
{{ _lang('Late Payment Penalties') }}
status == 1 ? 'disabled' : 'required' }}>
%
{{ _lang('Attachment') }}
status == 1 ? 'disabled' : '' }}>
{{ _lang('Description') }}
{{ $loan->description }}</textarea>
{{ _lang('Remarks') }}
{{ $loan->remarks }}</textarea>
{{ _lang('Update Changes') }}
@endsection