@extends('layouts.admin.theme') @section("title", env("APP_NAME") . " :: Novas imagens para: " . $ponto->ponto) @section('content')
@php $headLine = " Visite Angra - Pontos TurĂ­sticos - Novas imagens para {$ponto->ponto}"; @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), 'routeBack' => 'admin.visiteAngra.pontos.arquivos.index', 'routeBackParams' => [$ponto->id], 'nameBack' => __("Voltar"), ])
@csrf @include("errors.messageFlash")
@include('components.inputs._inputType',[ "for" => "link", "label" => "Escolhas as imagens", "name" => "link[]", "id" => 'link', "required" => true, "type" => 'file', "old" => null, "oninput" => null, "readonly" => true, "multiple" => true, "small" => "* Apenas documentos de imagem: JPG, JPEG, PNG, GIF, BMP, WEBP.", "accept" => 'image/*', ])
@include('components.buttons._backAndSend',[ 'routeBack' => 'admin.visiteAngra.pontos.arquivos.index', 'backId' => $ponto->id, 'textBack' => "Voltar", 'textSend' => "Cadastrar", ])
@endsection