@extends('admin.index') @section('content') @push('css') @endpush

{{ $title }}

{!! Form::open(['url'=>aurl('charges'),'files' => true,'enctype' => 'multipart/form-data']) !!}
{!! Form::label('name', 'Description*')!!} {!! Form::text('description',old('description'),['class'=>'form-control']) !!}
{!! Form::label('name', 'Type*')!!} {!! Form::select('type_id', $select, null, ['class'=>'form-control']) !!}
{!! Form::label('name', 'Montante*')!!} {!! Form::text('amount',old('amount'),['class'=>'form-control']) !!}
{!! Form::label('name', 'état de paiement*')!!} {!! Form::select('payment_state', ['NonPaye' => 'NonPaye','Paye' => 'Paye',], null, ['class'=>'form-control'],['placeholder' => 'Choisir un état de paiement...']);!!}
{!! Form::label('invoice_file','Choisir un fichier]' ) !!}
{{--
--}} {!! Form::submit('Ajoute',['class'=>'btn btn-primary col-md-12']) !!} {!! Form::close() !!}

Remarque : (*) => champ obligatoire

@endsection @push('js') @endpush