@extends('layouts.dash')
@section('title') Fournisseur @stop
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->form('POST', url('fournisseurs'))->open() }}
@include("tiers.fournisseurs.content")
{{ html()->form()->close() }}
@stop
@section('scripts')
@include('tiers.fournisseurs.scripts_fournisseurs');
@stop