@extends('layouts.dash') {!! $with_navbar=false !!} @section('title') Transaction @stop @section('styles') @stop @section('content') {{ html()->form('POST', url('/grand_livre'))->attributes(["id"=>"form_create"])->open() }}
@if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif

Nouvelle Transaction

{!! html()->text('date_doc', date('d/m/Y'))->attributes(['id'=>'date_doc','placeholder' => 'JJ/MM/AAAA', 'class' => 'form-control']) !!}
{!! html()->select('journal',$liste_journaux,$journal) ->placeholder('A définir') ->attributes(['id' => 'journal','class' => 'form-control','width' => '100%']) !!}
{!! html()->select('trim',$trimestres,null)->placeholder('') ->attributes(['id' => 'trim','class' => 'form-control','width' => '100%']) !!}
{!! html()->text('ref_doc', "")->attributes(['class' => 'form-control']) !!}
* : Obligatoire et dans l'exercice en cours
@include("comptabilite.grandlivre.content_new")
{!! html()->button('Enregistrer')->value('Enregistrer')->type('submit')->attributes(['id'=>'btn_enregistrer','class' => 'btn btn-primary']) !!} Annuler
{{ html()->form()->close() }} @endsection @section('scripts') @endsection