@extends('layouts.admin') @section('content')

shopping_cart Gérer vos ventes en ligne

{!! Form::model($gamme, array("class" => "form-horizontal")) !!}
{!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('\Plugins\Vente\Controller\VenteController@edit_transporteur', array('id' => $transporteur)) . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!}

Paramètre de la gamme de prix

{!! Form::text('min', old('min'), array("class" => "form-control", "placeholder" => "Prix minimum")) !!}
{!! Form::text('max', old('max'), array("class" => "form-control", "placeholder" => "Prix maximum")) !!}
{!! Form::hidden('id') !!} {!! Form::hidden('transporteur', $transporteur) !!} {!! Form::close() !!} @stop