@extends('default.layout') @section('content')

Gerar etiqueta do produto: {{$produto->nome}}

@csrf
@if($errors->has('altura'))
{{ $errors->first('altura') }}
@endif
@if($errors->has('largura'))
{{ $errors->first('largura') }}
@endif
@if($errors->has('qtd_linhas'))
{{ $errors->first('qtd_linhas') }}
@endif
@if($errors->has('dist_lateral'))
{{ $errors->first('dist_lateral') }}
@endif
@if($errors->has('dist_topo'))
{{ $errors->first('dist_topo') }}
@endif
@if($errors->has('qtd_etiquetas'))
{{ $errors->first('qtd_etiquetas') }}
@endif
@if($errors->has('tamanho_fonte'))
{{ $errors->first('tamanho_fonte') }}
@endif
@if($errors->has('tamanho_codigo'))
{{ $errors->first('tamanho_codigo') }}
@endif

Os campos marcados serão impressos na etiqueta


@section('javascript') @endsection @endsection