@extends('adminlte::page') @section('title', 'Criar equipes') @section('content_header') Criar novo equipe @endsection @section('breadcrumb') @endsection @section('htmlheader_title') {{ trans('adminlte_lang::message.home') }} @endsection @section('content') @if(count($errors) > 0) @endif
{!! Form::open(['route' => 'teams.store', 'method' => 'POST']) !!}
{!! Form::label('name', 'Nome') !!} {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'Nome da equipe', 'required']) !!}
{!! Form::submit('Salvar', ['class' => 'btn btn-primary']) !!} Cancelar
{!! Form::close() !!}
@endsection