@extends('layouts.master') @section('title') Edit Payment @endsection @section('content')

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

{!! Form::open(array('url' => url('event/payment/'.$event_payment->id.'/update'), 'method' => 'post','class'=>'', 'name' => 'form',"enctype"=>"multipart/form-data")) !!}
{!! Form::label('member_id',trans_choice('general.member',1),array('class'=>' control-label')) !!}
{!! Form::select('member_id',$members,$event_payment->member_id, array('class' => 'form-control select2','placeholder'=>'','required'=>'required','id'=>'member_id')) !!}
{!! Form::label('amount',trans_choice('general.amount',1),array('class'=>'')) !!} {!! Form::text('amount',$event_payment->amount, array('class' => 'form-control touchspin', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('date',trans_choice('general.date',1),array('class'=>'')) !!} {!! Form::text('date',$event_payment->date, array('class' => 'form-control date-picker', '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,$event_payment->payment_method_id, array('class' => 'form-control select2','placeholder'=>'','id'=>'payment_method_id')) !!}
{!! Form::label('notes',trans_choice('general.note',2),array('class'=>'')) !!} {!! Form::textarea('notes',$event_payment->notes, array('class' => 'form-control')) !!}
{!! Form::close() !!}
@endsection @section('footer-scripts') @endsection