@extends('layouts.default') @section('content')

{{ trans('labels.payment') }}

{{ Form::open(array('url' => 'payment/create')) }}
{{ trans('labels.date') }} :
{{ Form::text('pay_date', Input::old('pay_date'), array('class' => 'date')) }}
{{ trans('labels.amount') }} :
{{ Form::text('pay_amount', Input::old('pay_amount')) }}
{{ trans('labels.benef') }} :
{{ Form::select('pay_actor', $actor_options, Input::old('pay_actor')) }}
{{ trans('labels.reason') }} :
{{ Form::textarea('pay_desc', Input::old('pay_desc')) }}
 
{{ Form::submit('OK' , array( 'class' => 'button bn ok')) }}
{{ Form::close() }} @endsection