@extends('layouts.master') @section('title') Nouveau Type @stop @section('content')
@if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif

Nouveau Type

{!! Form::open(['benef_type' => 'form', 'url' => '/param/benef_types', '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']) !!}

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

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