1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 02:11:34 +02:00
invoiceninja/app/views/credits/edit.blade.php

64 lines
1.2 KiB
PHP
Raw Normal View History

2013-12-05 16:23:24 +01:00
@extends('header')
@section('onReady')
$('input#name').focus();
@stop
@section('content')
{{ Former::open($url)->addClass('col-md-10 col-md-offset-1 main_form')->method($method)->rules(array(
2013-12-08 14:32:49 +01:00
'client' => 'required',
'amount' => 'required',
2013-12-05 16:23:24 +01:00
)); }}
@if ($credit)
{{ Former::populate($credit) }}
@endif
<div class="row">
<div class="col-md-8">
@if ($credit)
{{ Former::legend('Edit Credit') }}
@else
{{ Former::legend('New Credit') }}
@endif
{{ Former::select('client')->fromQuery($clients, 'name', 'public_id')->select($client ? $client->public_id : '')->addOption('', '')->addGroupClass('client-select') }}
{{ Former::text('amount') }}
2013-12-25 22:34:42 +01:00
{{ Former::text('credit_date')->data_date_format(DEFAULT_DATE_PICKER_FORMAT) }}
2013-12-05 16:23:24 +01:00
</div>
<div class="col-md-6">
</div>
</div>
<center style="margin-top:16px">
{{ Button::lg_primary_submit('Save') }} &nbsp;|&nbsp;
{{ link_to('credits/' . ($credit ? $credit->public_id : ''), 'Cancel') }}
</center>
{{ Former::close() }}
<script type="text/javascript">
$(function() {
var $input = $('select#client');
$input.combobox();
$('#credit_date').datepicker({
autoclose: true,
todayHighlight: true
});
});
</script>
@stop