@extends('layouts.admin.theme') @section("title", env("APP_NAME") . " :: Alterar Foto") @section('content')
@php $headLine = " Alterar Foto"; @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), "permission" => "GUEST", ])
@csrf @method('post') @include("errors.messageFlash") @include('components.modal._modelProfile')
@include('components.inputs._inputType',[ "for" => null, "label" => "Foto", "name" => "photo", "id" => null, "required" => false, "type" => 'file', "old" => null, "oninput" => null, "readonly" => true, "small" => null, "accept" => 'image/jpeg,image/jpg,image/png,image/gif', ])
@include('components.buttons._backAndSend', [ 'textSend' => 'Atualizar', ])
@endsection