@extends('layouts.dash_pop') @section('title') Liquidations @stop @section('title_card') @stop @section('subtitle_card',"Employeur") @section('content')

Liquidation des salaires {!! ($simulation=='true')?"(simulation)":"" !!}

{{ html()->form('POST', url('salaire_liquidation/'.$beneficiaire->id))->open() }}
{!! html()->label( "Nombre d'années",'nb_an') !!} {!! html()->text('nb_an', "TOUTES", ['class' => 'form-control']) !!}
{!! html()->label( 'Dernière année à prendre en compte : ','last_annee') !!} {!! html()->text('last_annee', date('Y'), ['class' => 'form-control ']) !!}
{!! html()->button('Imprimer')->value('Imprimer la liquidation')->type('submit')->attributes(['class' => 'btn btn-danger']) !!}
{{ html()->form()->close() }}
@endsection