@extends('layouts.dashboard') @push('styles') @endpush @section('page-title', 'Editar Blog') @section('page-subtitle', 'Atualize os dados do blog') @section('content') @if ($errors->any())
@foreach ($errors->all() as $error) {{ $error }} @endforeach
@endif
@csrf {{-- ══ LEFT: Editor de conteúdo ══ --}}
@php $tr = (object) ($blog->translations ?? new stdClass); $ptTr = (object) ($tr->pt ?? new stdClass); $enTr = (object) ($tr->en ?? new stdClass); @endphp

Conteúdo do blog * PT

Use a barra de ferramentas para formatar e inserir imagens

@error('translations.pt.content')

Conteúdo (PT): {{ $message }}

@enderror @error('translations.en.content')

Content (EN): {{ $message }}

@enderror
{{-- ══ RIGHT: Informações ══ --}}

Informações do blog

{{-- Botões fixos no rodapé --}}
{{-- ══ Modal de recorte ══ --}} @endsection @push('scripts') @endpush