@extends('layouts/app') @section('content')
@if (isset($success))
Producto creado con éxito.
@endif

Nuevo Servicio

{{ csrf_field() }}
@if ($errors->has('nombre')) {{ $errors->first('nombre') }} @endif
@if ($errors->has('tipos_producto')) {{ $errors->first('tipos_producto') }} @endif
@if ($errors->has('precio')) {{ $errors->first('precio') }} @endif
@if ($errors->has('columna1')) {{ $errors->first('columna1') }} @endif
@if ($errors->has('columna2')) {{ $errors->first('columna2') }} @endif
@endsection