@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::submit('Enregistrer', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@stop