@extends('layouts.login') @section('css') @if(isset($empresa)) @endif @stop @section('contenido')

{{ trans('registro.label_welcome') }}

{{ trans('registro.label_msg_welcome') }} {{ $empresa->getNombre() }}

{{ trans('registro.btn_entrar') }}

{{ trans('registro.label_registro') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@include('auth.form.datosCuenta') @include('auth.form.datosContacto') @include('auth.form.datosGenerales') @include('auth.form.btn')
@endsection @section('js') @endsection