@extends('layouts.master') @section('title') Mise à jour d'un Statut de bénéficiaire @stop @section('content')
@if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif

Mise à jour d'un Statut

{!! Form::model($benef_statut, ['benef_statut' => 'form', 'method' => 'PUT' , 'url' => '/param/benef_statuts/' . $benef_statut->id, 'class' => 'form-control', 'class' => 'form-horizontal']) !!}
{!! Form::label('ref', 'Référence') !!} {!! Form::text('ref', null, ['placeholder' => 'Référence', 'class' => 'form-control text-uppercase','readonly']) !!}

{!! Form::label('libelle', 'Libellé') !!} {!! Form::text('libelle', null, ['placeholder' => 'Libellé', 'class' => 'form-control']) !!}

{!! Form::submit('Enregistrer', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@stop