@extends('layouts.master')
@section('title') Mise à jour d'un Journal @stop
@section('styles')
{!! Html::style('css/jquery.fancybox.css') !!}
{!! Html::style('css/jquery.fancybox-buttons.css') !!}
{!! Html::style('css/dataTables.bootstrap.css'); !!}
{!! Html::style('css/buttons.bootstrap.css'); !!}
@stop
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
Mise à jour du Journal : {!! $journal->id !!}
{!! Form::model($journal, ['plan' => 'form', 'url' => '/compta/journal/' . $journal->id
, 'class' => 'form-horizontal', 'method' => 'PUT']) !!}
{!! Form::submit('Enregistrer', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@stop
@section('scripts')
{!! Html::script('js/magicsuggest.js') !!}
{!! Html::script('js/jquery.fancybox.js') !!}
{!! Html::script('js/moment.min.js'); !!}
{!! Html::script('js/datetime-moment.js'); !!}
@stop