@extends('layouts.app')
@section('title','Adicionar um Produto')
@section('content')
Adicionar um Produto
@if($message = Session::get('success'))
{{$message}}
@endif
@if(count($errors)>0)
@foreach($errors->all() as $error)
- {{$error}}
@endforeach
@endif
@endsection