@extends('layouts.app') @section('content')
@include('includes.message')
Nuevo Cliente
@csrf
@if ($errors->has('razon_social')) {{ $errors->first('razon_social') }} @endif
Datos de la Planta
@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
@endsection