home
/
zktecojo
/
public_html
/
app
/
storage
/
views
➕ New
📤 Upload
✎ Editing:
d2de6b858012360c9335ba5bd8e45486
← Back
<!DOCTYPE html> <html><head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title><?php echo e($pageTitle); ?></title> <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'> <link href="<?php echo URL::to('assets/admin/css/bootstrap.min.css'); ?>" rel="stylesheet" type="text/css" /> <link href="<?php echo URL::to('assets/admin/css/font-awesome.min.css'); ?>" rel="stylesheet" type="text/css" /> <link href="<?php echo URL::to('assets/admin/css/AdminLTE.css'); ?>" rel="stylesheet" type="text/css" /> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <![endif]--> <link rel="shortcut icon" href="<?php echo URL::to('assets/images/logo.png'); ?>"> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-11466578697'); </script> </head> <body> <div class="form-box" id="login-box"> <?php //echo $message; ?> <div class="header"><?php echo e($pageTitle); ?></div> <?php echo Form::open(array('url' => 'admin/create')); ?> <div class="body bg-gray"> <div class="form-group"> <?php echo Form::text('name',Input::old('name'),array('class'=>($errors->has('name')?'input-error ':'').'form-control','placeholder'=>'Full name here')); ?> <?php if($errors->has('name')): ?> <span class="input-error-icon" data-err="<?php echo $errors->first('name',':message'); ?>"></span> <?php endif; ?> </div> <div class="form-group"> <?php echo Form::text('email',Input::old('email'),array('class'=>($errors->has('email')?'input-error ':'').'form-control','placeholder'=>'Email will be your username')); ?> <?php if($errors->has('email')): ?> <span class="input-error-icon" data-err="<?php echo $errors->first('email',':message'); ?>"></span> <?php endif; ?> </div> <div class="form-group"> <?php echo Form::password('password',array('class'=>($errors->has('password')?'input-error ':'').'form-control','placeholder'=>'Password')); ?> <?php if($errors->has('password')): ?> <span class="input-error-icon" data-err="<?php echo $errors->first('password',':message'); ?>"></span> <?php endif; ?> </div> <div class="form-group"> <?php echo Form::password('password_confirmation',array('class'=>($errors->has('password_confirmation')?'input-error ':'').'form-control','placeholder'=>'Confirm Password')); ?> <?php if($errors->has('password_confirmation')): ?> <span class="input-error-icon" data-err="<?php echo $errors->first('password_confirmation',':message'); ?>"></span> <?php endif; ?> </div> <div class="form-group"> <?php echo Form::submit('Create',array('name'=>'create','class'=>'btn btn-sm btn-maroon')); ?> </div> </div> <?php echo Form::close(); ?> </div> <!-- jQuery 2.0.2 --> <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script> <!-- Bootstrap --> <script src="<?php echo URL::to('assets/admin/js/bootstrap.min.js'); ?>" type="text/javascript"></script> <script type="text/javascript"> <?php if($errors->any()): ?> $(document).ready(function(){ var inpWidth = $('.form-control').width()-1; var inpHeight = $('.form-control').height()-2; $('.input-error-icon').on('mouseover',function(){ $(this).append('<span class="error-message-pop">'+$(this).attr('data-err')+'</span>'); $(this).find('.error-message-pop').css({left:'-'+inpWidth+'px','width':inpWidth+'px'}); console.log($('.form-control').width()); }); $('.input-error-icon').on('mouseout',function(){ $(this).find('.error-message-pop').remove(); }); $(window).resize(function(){ inpWidth = $('.form-control').width()-1; inpHeight = $('.form-control').height()-2; }); }); <?php endif; ?> </script> </body> </html>
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel