{{ Form::model($products, ['route' => ['biller.products.update', $products], 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PATCH', 'id' => 'edit-product','files'=>true]) }}
{{-- Including Form blade file --}}
@include("focus.products.form")
{{ Form::close() }}
{!! $fields_data !!}
{{ link_to_route('biller.products.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-md']) }}
{{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'btn btn-primary btn-md']) }}