@extends('layouts.crud') @section('title', 'Perfis - Cadastrar Novo') @section('content')

Cadastrar Novo Perfil

@if($errors->any()) @endif {!! Form::open(['route'=>'perfis.store']) !!}
{!! Form::label('nome', 'Nome:') !!} {!! Form::text('nome', null, ['class'=>'form-control', 'maxlength'=>64, 'required']) !!}
{!! Form::reset('Limpar', ['class'=>'btn btn-default mr-1']) !!} {!! Form::submit('Cadastrar', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@stop @section('table-delete') "perfis" @stop