@extends('layouts.master')
@section('title') Nouvelle écriture @stop
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
Nouvelle écriture
{!! Form::open(['journal' => 'form', 'url' => '/compta/journal', 'class' => 'form-horizontal']) !!}
{!! Form::submit('Enregistrer', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@stop