OwlCyberSecurity - MANAGER
Edit File: register.blade.php
@extends('layouts.master') @section('title') Register @endsection @section('tag') <meta name="description" content="" /> @endsection @section('levelCSS') @endsection @section('register') active @endsection @section('body') <!-- page title & breadcrumbs start --> {{--@include('partials.breadcrumb', ['title'=>'Register'])--}} <!-- /.page-header --> <!-- page title & breadcrumbs end --> <div class="container"> <div class="row justify-content-center"> <div class="col-sm-6 py-5 text-justify section-head"> <div class="card bg-white" style="border: 1px solid #2E86C1"> <div class="card-body px-5 py-3"> <div class="col-sm-12"> <form method="post" action="{{route('/register')}}" id="registerForm" data-callback="{{route('/login')}}" role="form"> <div class="form-group"> <h2>Create Account</h2> </div> <div class="form-group"> <label for="fullName">Your Full Name *</label> <input type="text" class="form-control" name="full_name" placeholder="" required> </div> <div class="form-group"> <label for="email">Valid Email Address</label> <input type="email" class="form-control" name="email" placeholder=""> </div> <div class="form-group"> <label for="phone">Phone Number *</label> <input type="text" class="form-control" name="phone" placeholder="" required> </div> <div class="form-group"> <label for="">Country *</label> <select name="country" class="form-control crs-country select2" data-region-id="one" required id="" style="height: 45px!important;"></select> </div> {{ csrf_field() }} <div class="form-group"> <label for="password">Password *</label> {{--<div class="row">--}} {{--<div class="col-xs-12">--}} <input type="password" class="form-control" name="password" placeholder="" required> {{--</div>--}} {{--</div>--}} </div> <div class="form-group"> <label for="password">Confirm Password *</label> {{--<div class="row">--}} {{--<div class="col-xs-12">--}} <input type="password" class="form-control" name="password_confirmation" placeholder="" required> {{--</div>--}} {{--</div>--}} </div> <div class="form-group"> <button id="regBtn" type="submit" class="btn btn-primary btn-block">COMPLETE REGISTER</button> </div> {{--<p class="form-group">By creating an account, you agree to our <a href="#">Terms of Use</a> and our <a href="#">Privacy Policy</a>.</p>--}} </form> </div> </div> <div class="text-center card-footer py-4"> Registered Already? <a href="{{route('/login')}}" class="text-primary" style="color: blue;">Login</a> </div> </div> </div> </div> </div> @endsection @section('levelJS') @endsection