@extends('layouts.dash')
{!! $with_navbar=false !!}
@section('title')Diplôme @stop
@section('title_card',"Mise à jour d'un Diplôme")
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->modelForm($diplome, 'PUT', url('/diplomes/' . $diplome->id))->open() }}
@include('structures.diplomes.content')
{{ html()->closeModelForm() }}
@endsection