@extends('layouts.master') @section('title') {{translate('edit saving fee')}} @endsection @section('content')
{{translate('edit saving fee')}}
{!! Form::open(array('url' => url('saving/savings_fee/'.$savings_fee->id.'/update'), 'method' => 'post', 'name' => 'form',"enctype"=>"multipart/form-data")) !!}
{!! Form::label('name',translate('name'),array('class'=>'')) !!} {!! Form::text('name',$savings_fee->name, array('class' => 'form-control','required'=>'required')) !!}
{!! Form::label('amount',translate('amount'),array('class'=>'')) !!} {!! Form::text('amount',$savings_fee->amount, array('class' => 'form-control touchspin', 'placeholder'=>'','required'=>'required')) !!}
{!! Form::label('fees_posting',translate('fee_posting_frequency_on_savings_accounts'),array('class'=>'')) !!} {!! Form::select('fees_posting',$interest_posting,$savings_fee->fees_posting, array('class' => 'form-control','required'=>'')) !!}
{!! Form::label('fees_adding',translate('fees_adding'),array('class'=>'')) !!} {!! Form::select('fees_adding',$interest_adding,$savings_fee->fees_adding, array('class' => 'form-control','required'=>'','placeholder'=>'')) !!}
{!! Form::label('amount',translate('minimum').' '.translate('balance'),array('class'=>'')) !!} {!! Form::number('amount',$savings_fee->amount, array('class' => 'form-control', 'placeholder'=>translate('numbers_only'),'required'=>'')) !!}
@foreach($savings_products as $key)
@endforeach

{{translate('fee_product_warning')}}

{!! Form::close() !!}
@endsection