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

Mise à jour d'un Type

{!! Form::model($benef_type, ['benef_type' => 'form', 'method' => 'PUT' , 'url' => '/param/benef_types/' . $benef_type->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::label('statuts', 'Statuts') !!} {!! Form::text('statuts', null, ['placeholder' => 'Statuts', 'class' => 'form-control']) !!}

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