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

@csrf
  • @if($errors->has('produto_id'))
    {{ $errors->first('produto_id') }}
    @endif
    @if($errors->has('quantidade'))
    {{ $errors->first('quantidade') }}
    @endif
    @if($errors->has('estado'))
    {{ $errors->first('estado') }}
    @endif
    @if($errors->has('observacao'))
    {{ $errors->first('observacao') }}
    @endif
    @section('javascript') @endsection @endsection