@extends('layouts.admin') @section('content')

Adicionar Prefixos

@if(Session::has('success'))
{{ Session::get('success') }} @php Session::forget('success'); @endphp
@endif @if(Session::has('error'))
{{ Session::get('error') }} @php Session::forget('error'); @endphp
@endif
@if($errors->has('adaptadora'))

{{ $errors->first('adaptadora') }}

@endif
@if($errors->has('inversor'))

{{ $errors->first('inversor') }}

@endif
@if($errors->has('maca'))

{{ $errors->first('maca') }}

@endif
@if($errors->has('tanque'))

{{ $errors->first('tanque') }}

@endif
@if($errors->has('bomba'))

{{ $errors->first('bomba') }}

@endif
@if($errors->has('radio_movel'))

{{ $errors->first('radio_movel') }}

@endif
@endsection