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

Atalhos para PDV

@csrf

O atalho deve ser o nome separados por teclas '+'; Exemplo: ctrl+shift+b, ctrl+h

@if($errors->has('finalizar'))
{{ $errors->first('finalizar') }}
@endif
@if($errors->has('reiniciar'))
{{ $errors->first('reiniciar') }}
@endif
@if($errors->has('editar_desconto'))
{{ $errors->first('editar_desconto') }}
@endif
@if($errors->has('editar_acrescimo'))
{{ $errors->first('editar_acrescimo') }}
@endif
@if($errors->has('editar_observacao'))
{{ $errors->first('editar_observacao') }}
@endif
@if($errors->has('setar_valor_recebido'))
{{ $errors->first('setar_valor_recebido') }}
@endif
@if($errors->has('forma_pagamento_dinheiro'))
{{ $errors->first('forma_pagamento_dinheiro') }}
@endif
@if($errors->has('forma_pagamento_debito'))
{{ $errors->first('forma_pagamento_debito') }}
@endif
@if($errors->has('forma_pagamento_credito'))
{{ $errors->first('forma_pagamento_credito') }}
@endif
@if($errors->has('forma_pagamento_pix'))
{{ $errors->first('forma_pagamento_pix') }}
@endif
@if($errors->has('setar_leitor'))
{{ $errors->first('setar_leitor') }}
@endif
@if($errors->has('impressora_modelo'))
{{ $errors->first('impressora_modelo') }}
@endif
@endsection