2015-10-14 16:15:39 +02:00
|
|
|
@extends('header')
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-09-23 16:00:47 +02:00
|
|
|
@section('content')
|
2015-03-16 22:45:25 +01:00
|
|
|
@parent
|
|
|
|
|
2015-10-14 16:15:39 +02:00
|
|
|
@include('accounts.nav', ['selected' => ACCOUNT_PRODUCTS])
|
|
|
|
|
2015-04-20 16:34:23 +02:00
|
|
|
{!! Former::open()->addClass('warn-on-exit') !!}
|
2015-03-16 22:45:25 +01:00
|
|
|
{{ Former::populateField('fill_products', intval($account->fill_products)) }}
|
|
|
|
{{ Former::populateField('update_products', intval($account->update_products)) }}
|
|
|
|
|
|
|
|
|
2015-04-20 16:34:23 +02:00
|
|
|
<div class="panel panel-default">
|
2015-04-22 21:21:04 +02:00
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title">{!! trans('texts.product_settings') !!}</h3>
|
2016-09-23 16:00:47 +02:00
|
|
|
</div>
|
2015-04-20 16:34:23 +02:00
|
|
|
<div class="panel-body">
|
|
|
|
|
2017-01-09 16:01:51 +01:00
|
|
|
{!! Former::checkbox('fill_products')->text(trans('texts.fill_products_help'))->value(1) !!}
|
|
|
|
{!! Former::checkbox('update_products')->text(trans('texts.update_products_help'))->value(1) !!}
|
2015-04-20 16:34:23 +02:00
|
|
|
|
2015-10-21 13:11:08 +02:00
|
|
|
{!! Former::actions( Button::success(trans('texts.save'))->submit()->appendIcon(Icon::create('floppy-disk')) ) !!}
|
2015-04-20 16:34:23 +02:00
|
|
|
{!! Former::close() !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-09-23 16:00:47 +02:00
|
|
|
@stop
|