mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
44 lines
1.0 KiB
PHP
44 lines
1.0 KiB
PHP
@extends('accounts.nav')
|
|
|
|
@section('content')
|
|
@parent
|
|
|
|
{!! Former::open($url)->method($method)
|
|
->rules(['product_key' => 'required|max:255'])
|
|
->addClass('col-md-8 col-md-offset-2 warn-on-exit') !!}
|
|
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! $title !!}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
|
|
@if ($product)
|
|
{{ Former::populate($product) }}
|
|
{{ Former::populateField('cost', number_format($product->cost, 2, '.', '')) }}
|
|
@endif
|
|
|
|
{!! Former::text('product_key')->label('texts.product') !!}
|
|
{!! Former::textarea('notes') !!}
|
|
{!! Former::text('cost') !!}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{!! Former::actions(
|
|
Button::normal(trans('texts.cancel'))->large()->asLinkTo(URL::to('/company/products'))->appendIcon(Icon::create('remove-circle')),
|
|
Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk'))
|
|
) !!}
|
|
|
|
{!! Former::close() !!}
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
$('#product_key').focus();
|
|
});
|
|
|
|
</script>
|
|
|
|
@stop |