@extends('layouts.dash')
{!! $with_navbar=false !!}
@section('title')Diplôme @stop
@section('title_card',"Consultation d'un Diplôme")
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->modelForm($diplome)->attributes(['class' => 'form-horizontal'])->open() }}
@include('structures.diplomes.content')
{{ html()->closeModelForm() }}
@endsection