| Server IP : 127.0.1.1 / Your IP : 216.73.216.129 Web Server : Apache/2.4.52 (Ubuntu) System : Linux bahcrestlinepropertiesllc 5.15.0-113-generic #123-Ubuntu SMP Mon Jun 10 08:16:17 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/bahcrestline/core/storage/framework/views/ |
Upload File : |
<?php if(Helper::GeneralWebmasterSettings("register_status")): ?>
<!DOCTYPE html>
<html lang="<?php echo e(trans('backLang.code')); ?>" dir="<?php echo e(trans('backLang.direction')); ?>">
<head>
<?php echo $__env->make('backEnd.includes.head', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</head>
<body>
<div class="app" id="app">
<!-- ############ LAYOUT START-->
<div class="center-block w-xxl w-auto-xs p-y-md">
<div class="navbar">
<div class="pull-center">
<div>
<a class="navbar-brand"><img src="<?php echo e(URL::to('backEnd/assets/images/logo.png')); ?>" alt="."> <span
class="hidden-folded inline"><?php echo e(trans('backLang.control')); ?></span></a>
</div>
</div>
</div>
<div class="p-a-md box-color r box-shadow-z1 text-color m-a">
<div class="m-b text-sm">
<?php echo e(trans('backLang.newUser')); ?>
</div>
<form role="form" method="POST" action="<?php echo e(route('register')); ?>">
<?php echo e(csrf_field()); ?>
<?php if($errors->has('name')): ?>
<div class="alert alert-warning">
<?php echo e($errors->first('name')); ?>
</div>
<?php endif; ?>
<?php if($errors->has('email')): ?>
<div class="alert alert-warning">
<?php echo e($errors->first('email')); ?>
</div>
<?php endif; ?>
<?php if($errors->has('password')): ?>
<div class="alert alert-warning">
<?php echo e($errors->first('password')); ?>
</div>
<?php endif; ?>
<div class="md-form-group">
<input id="name" type="text" class="md-input" name="name" value="<?php echo e(old('name')); ?>" required
autofocus>
<label><?php echo e(trans('backLang.fullName')); ?></label>
</div>
<div class="md-form-group">
<input id="email" type="email" class="md-input" name="email" value="<?php echo e(old('email')); ?>" required>
<label><?php echo e(trans('backLang.connectEmail')); ?></label>
</div>
<div class="md-form-group">
<input id="password" type="password" class="md-input" name="password" required>
<label><?php echo e(trans('backLang.connectPassword')); ?></label>
</div>
<div class="md-form-group">
<input id="password-confirm" type="password" class="md-input" name="password_confirmation" required>
<label><?php echo e(trans('backLang.confirmPassword')); ?></label>
</div>
<button type="submit" class="btn primary btn-block p-x-md"><i
class="material-icons"></i> <?php echo e(trans('backLang.createNewAccount')); ?></button>
</form>
</div>
<div class="p-v-lg text-center">
<div><?php echo e(trans('backLang.signedInToControl')); ?> <a href="<?php echo e(url('/login')); ?>"
class="text-primary _600"><?php echo e(trans('backLang.signIn')); ?></a>
</div>
</div>
</div>
<!-- ############ LAYOUT END-->
</div>
<?php echo $__env->make('backEnd.includes.foot', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</body>
</html>
<?php else: ?>
<script>
window.location.href = '<?php echo e(url("/login")); ?>';
</script>
<?php endif; ?>
<?php /**PATH /var/www/bahcrestline/core/resources/views/auth/register.blade.php ENDPATH**/ ?>