@extends('layouts.dash')
{!! $with_navbar=false !!}
@section('title') Plan Comptable @stop
@section('title_card',"Modifier un compte")
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->modelForm($plan_comptable, 'PUT', url('/plan_comptable/' . $plan_comptable->id))->open() }}
@include("comptabilite.plan_comptable.content")
{{ html()->closeModelForm() }}
@endsection