@php /** @var \App\Models\ParqueTecnologico\Startup|null $startup */ $startup = $startup ?? null; @endphp
{{-- COLUNA ESQUERDA --}}
{{-- INFORMAÇÕES --}}
Informações Gerais
@include('components.inputs._inputType', [ 'label' => __('Nome'), 'name' => 'nome', 'required' => true, 'old' => $startup?->nome, ]) @include('components.inputs._textarea', [ 'label' => __('Descrição') . ' (' . __('opcional') . ')', 'name' => 'descricao', 'value' => $startup?->descricao ?? '', 'rows' => 4, ])
@error('segmento') {{ $message }} @enderror
{{-- IMAGENS --}}
Imagens
{{-- LOGO --}}
@error('logo') {{ $message }} @enderror
{{-- BACKGROUND --}}
@error('background') {{ $message }} @enderror
{{-- COLUNA DIREITA --}}
{{-- CONTATO --}}
Contato
{{-- CONFIGURAÇÕES --}}
Configurações
@include('components.inputs._inputType', [ 'label' => __('Ordem de exibição'), 'name' => 'ordem', 'type' => 'number', 'old' => (string) ($startup?->ordem ?? 0), ])
@push('scripts') @endpush