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

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

{!! Form::open(array('url' => url('pledge/'.$id.'/payment/store'), 'method' => 'post','class'=>'', 'name' => 'form',"enctype"=>"multipart/form-data")) !!}
{!! Form::label('amount',trans_choice('general.amount',1),array('class'=>'')) !!} {!! Form::text('amount',null, 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,null, array('class' => 'form-control','required'=>'required','placeholder'=>'')) !!}
{!! Form::label('date',trans_choice('general.date',1),array('class'=>'')) !!} {!! Form::text('date',date("Y-m-d"), array('class' => 'form-control date-picker', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('notes',trans_choice('general.note',2),array('class'=>'')) !!} {!! Form::textarea('notes',null, array('class' => 'form-control')) !!}
{!! Form::close() !!}
@endsection @section('footer-scripts') @endsection