@section('page_name') Create new product @stop @section('scripts') @stop @section('content')
{{ 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')) }} |