@extends('layouts.master') @section('title') {{ trans_choice('general.edit',1) }} {{ trans_choice('general.payment',1) }} @endsection @section('content')

{{ trans_choice('general.edit',1) }} {{ trans_choice('general.payment',1) }}

{!! Form::open(array('url' => url('pledge/payment/'.$pledge_payment->id.'/update'), 'method' => 'post','class'=>'', 'name' => 'form',"enctype"=>"multipart/form-data")) !!}
@if(isset($_REQUEST['return_url'])) @endif
{!! Form::label('amount',trans_choice('general.income',1).' '.trans_choice('general.amount',1),array('class'=>'')) !!} {!! Form::text('amount',$pledge_payment->amount, array('class' => 'form-control touchspin', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('payment_method_id',trans_choice('general.payment',1).' '.trans_choice('general.method',1),array('class'=>' control-label')) !!} {!! Form::select('payment_method_id',$payment_methods,$pledge_payment->payment_method_id, array('class' => 'form-control','required'=>'required','placeholder'=>'')) !!}
{!! Form::label('date',trans_choice('general.date',1),array('class'=>'')) !!} {!! Form::text('date',$pledge_payment->date, array('class' => 'form-control date-picker', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('notes',trans_choice('general.description',1),array('class'=>'')) !!} {!! Form::textarea('notes',$pledge_payment->notes, array('class' => 'form-control')) !!}
{!! Form::close() !!}
@endsection @section('footer-scripts') @endsection