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

Update Payment

{{ Form::model($expense, array('route' => array('expense.update', $expense_id),'class' => 'form-horizontal', 'method' => 'PUT')) }}
@if($errors->has('vendor')) {{ $errors->first('vendor') }} @endif
@if($errors->has('payment_title')) {{ $errors->first('payment_title') }} @endif
@if($errors->has('type')) {{ $errors->first('type') }} @endif
@if($errors->has('payment_mode')) {{ $errors->first('payment_mode') }} @endif
{{ Form::text('receipt_number', null, array('class' => 'form-control')) }}
@if($errors->has('paid_date')) {{ $errors->first('paid_date') }} @endif
{{ Form::text('amount', null, array('class' => 'form-control')) }} @if($errors->has('amount')) {{ $errors->first('amount') }} @endif
{{ Form::text('tax_component', null, array('class' => 'form-control')) }}
{{ Form::text('reference', null, array('class' => 'form-control')) }}
{{ Form::text('description', null, array('class' => 'form-control')) }} @if($errors->has('description')) {{ $errors->first('description') }} @endif
@endsection