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 setup auth
// Only for laravel 6.x and higher
composer require laravel/ui "^1.0" --dev
php artisan ui vue --auth
bootstrap select
<select class="custom-select">
<option selected>Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
bootstrap form input select
<div class="col-lg-6 col-md-6 col-12">
<div class="input-group mb-3">
<div class="input-group-prepend">
<select class="form-control select2bs4" name="country_code" id="country_code" style="width: 100%">
<option value="+91">+91</option>
<option value="+351">+351</option>
<option value="+1">+1</option>
</select>
</div>
<input type="text" name="user" class="form-control" placeholder="Email Or Mobile Number">
</div>
</div>
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>
select option using bootstrap
<div class="form-group">
<label for="expertise" class="col-sm-2 control-label">Expertise:</label>
<div class="col-sm-3">
<select class="form-control inputstl" id="expertise" multiple>
<option>PHP</option>
<option>Java</option>
<option>HTML</option>
<option>CSS</option>
<option>Bootstrap</option>
<option>SQL</option>
</select>
</div>
bootstrap radio buttons
Bootstrap’s .button styles can be applied to other elements, such as <label>s, to provide checkbox
or radio style button toggling. Add data-toggle="buttons" to a .btn-group
containing those modified buttons to enable their toggling behavior via
JavaScript and add .btn-group-toggle to style the <input>s within your buttons.
Note that you can create single input-powered buttons or groups of them.
The checked state for these buttons is only updated via click event on the
button. If you use another method to update the input—e.g., with
<input type="reset"> or by manually applying the input’s checked
property—you’ll need to toggle .active on the <label> manually.
Note that pre-checked buttons require you to manually add the .active class to
the input’s <label>.
<div class="btn-group-toggle" data-toggle="buttons">
<label class="btn btn-secondary active">
<input type="checkbox" checked> Checked
</label>
</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