@extends('layouts.app') @section('content')
@include('includes.message')
@csrf
{{$planta->nombre}}
@if ($errors->has('nombre')) {{ $errors->first('nombre') }} @endif
@if ($errors->has('direccion')) {{ $errors->first('direccion') }} @endif
@if ($errors->has('localidad')) {{ $errors->first('localidad') }} @endif
@if ($errors->has('encargado')) {{ $errors->first('encargado') }} @endif
@if ($errors->has('telefono')) {{ $errors->first('telefono') }} @endif
Direcciones de correo electrónico
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('email2')) {{ $errors->first('email2') }} @endif
@if ($errors->has('email3')) {{ $errors->first('email3') }} @endif
@if ($errors->has('email4')) {{ $errors->first('email4') }} @endif

@endsection