@section('page_name') Create new product @stop @section('scripts') @stop @section('content')
Create new product
{{ Form::open(array('route' => 'products.store', 'method' => 'POST', 'onsubmit' => 'return validateForm();')) }}
{{ Form::text('name', '', array('placeholder' => 'Product name')) }}
{{ Form::textarea('description', null, array('rows' => '3', 'placeholder' => 'Product description')) }}
{{ Form::checkbox('isWork') }}
{{ Form::text('purchasePrice', null, array('class' => 'euro', 'style' => 'width: 100px;')) }}
{{ Form::text('salesPrice', null, array('class' => 'euro', 'style' => 'width: 100px;')) }}
{{ Form::hidden('discontinued', 0) }} {{ Form::checkbox('discontinued', 1) }}
{{ Form::button(' Save new product', array('class' => 'btn btn-default fr', 'type' => 'submit')) }}
{{ Form::close() }}
@stop