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