laravel make:auth
composer require laravel/ui
php artisan ui vue --auth
php artisan migrate
                                
                            laravel make:auth
composer require laravel/ui
php artisan ui vue --auth
php artisan migrate
                                
                            laravel auth routes
<!-- Default Laravel Auth Routes / Links for reference -->
@if (Route::has('login'))
    <div class="">
        @auth
            <a href="{{ url('/dashboard') }}" class="">Dashboard</a>
        @else
            <a href="{{ route('login') }}" class="">Log in</a>
            @if (Route::has('register'))
                <a href="{{ route('register') }}" class="">Register</a>
            @endif
        @endauth
    </div>
@endif
                                
                            bootstrap select input
<div class="form-group">
    <label for="exampleFormControlSelect1">Example select</label>
    <select class="form-control" id="exampleFormControlSelect1">
      <option>1</option>
      <option>2</option>
      <option>3</option>
      <option>4</option>
      <option>5</option>
    </select>
  </div>
  <div class="form-group">
    <label for="exampleFormControlSelect2">Example multiple select</label>
    <select multiple class="form-control" id="exampleFormControlSelect2">
      <option>1</option>
      <option>2</option>
      <option>3</option>
      <option>4</option>
      <option>5</option>
    </select>
  </div>
                                
                            Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us