@extends('layouts.dash') {!! $with_navbar=false !!} @section('title') Rôle @stop @section('title_card',"Nouveau Rôle") @section('content')
@if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif
{!! Form::open(['role' => 'form', 'url' => '/roles']) !!}
{!! Form::label('name', 'Nom') !!} {!! Form::text('name', null, ['placeholder' => 'Nom', 'class' => 'form-control']) !!}
{!! Form::submit('Enregistrer', ['class' => 'btn btn-primary']) !!} Retour
{!! Form::close() !!}
@endsection