@extends('adminlte::auth.auth-page', ['auth_type' => 'register']) @php( $login_url = View::getSection('login_url') ?? config('adminlte.login_url', 'login') ) @php( $register_url = View::getSection('register_url') ?? config('adminlte.register_url', 'register') ) @if (config('adminlte.use_route_url', false)) @php( $login_url = $login_url ? route($login_url) : '' ) @php( $register_url = $register_url ? route($register_url) : '' ) @else @php( $login_url = $login_url ? url($login_url) : '' ) @php( $register_url = $register_url ? url($register_url) : '' ) @endif @section('auth_header', __('Registrarse')) @section('auth_body')
{{ csrf_field() }} {{-- Rol selection --}}
@if($errors->has('rol')) {{ $errors->first('rol') }} @endif
{{-- Name field --}}
@if($errors->has('name')) {{ $errors->first('name') }} @endif
{{-- Email field --}}
@if($errors->has('email')) {{ $errors->first('email') }} @endif
{{-- Password field --}}
@if($errors->has('password')) {{ $errors->first('password') }} @endif
{{-- Password confirmation field --}}
{{-- Celular field --}}
@if($errors->has('celular')) {{ $errors->first('celular') }} @endif
{{-- Empresa field --}}
@if($errors->has('empresa')) {{ $errors->first('empresa') }} @endif
{{-- RUC field --}}
@if($errors->has('ruc')) {{ $errors->first('ruc') }} @endif
{{-- Register button --}}
@stop @section('auth_footer')

{{ __('I already have a membership') }}

@stop