@extends('layouts.dash')
@section('title') Paramêtres @stop
@section('title_card',"")
@section('subtitle_card',"")
@section('content')
@if (Session::has('message'))
{!! Session::get('message') !!}
@endif
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
@if (Session::has('success'))
{!! \Session::get('success') !!}
@endif
@include("param.parametres.content_taux")
@endsection
@section('scripts')
@endsection