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

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

{!! Form::open(array('url' => url('contribution/batch/'.$contribution_batch->id.'/update'), 'method' => 'post', 'class' => 'form-horizontal')) !!}
{!! Form::label('name',trans_choice('general.name',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('name',$contribution_batch->name, array('class' => 'form-control', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('date',trans_choice('general.date',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('date',$contribution_batch->date, array('class' => 'form-control date-picker', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('notes',trans_choice('general.note',2),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::textarea('notes',$contribution_batch->notes, array('class' => 'form-control', 'placeholder'=>"",'rows'=>'3')) !!}
{!! Form::close() !!}
@endsection