@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: ' . __('Nova Demanda')) @section('content')
@include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => " " . __('Nova Demanda'), 'routeBack' => 'admin.demandas.index', 'routeBackParams' => [], 'nameBack' => __('Quadro'), 'permission' => 'GERENCIADOR_DEMANDAS', ])
@if ($errors->any())
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@include('admin.demandas._form', [ 'demanda' => null, 'prioridades' => $prioridades, 'statusLabels' => $statusLabels, 'unidades' => $unidades, 'formAction' => route('admin.demandas.store'), 'method' => 'POST', 'podeAtendimentoTi' => $podeAtendimentoTi, 'setores' => $setores, ])
@push('after-scripts') @endpush @endsection