@extends('layouts.master')
@section('title') Create Role @stop
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
Nouveau role
{!! Form::open(['role' => 'form', 'url' => '/acces/roles']) !!}
{!! Form::label('name', 'Nom') !!}
{!! Form::text('name', null, ['placeholder' => 'Nom', 'class' => 'form-control text-uppercase', 'class' => 'form-horizontal']) !!}
{!! Form::submit('Enregistrer', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@stop