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