Hello friends, welcome back to my blog. Today in this blog post, I am going to tell you, Laravel 8 Bootstrap 4 Modal Popup Request a quote Form.
Guys if you are new in Laravel8 the please check below link for Laravel basics information:
Laravel Basics Tutorial for beginners
Here is the code snippet for Laravel 8 Bootstrap 4 Modal Popup Request a quote Form and please use carefully and avoid the mistakes.:
1. Friends here is the code below and you can add into your resources/views/ welcome.blade.php file:
Guys for demo purpose, I have used this code into my welcome blade and I have used Direct CDN to make working example.
... <head> ... <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> <!-- Font Awesome JS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <style> .text-primary { color: #0CDA90 !important; } .btn-primary { color: #fff; background-color: #0CDA90; border-color: #0CDA90; } .btn-primary { box-shadow: 0 3px 2px rgb(12 218 144 / 20%); } </style> </head> <body> <div class="container py-5"> <div class="py-5"> <div class="row"> <div class="col-lg-6 mb-5"> <button class="btn btn-primary" type="button" data-target="#quoteForm" data-toggle="modal">Request a quote</button> </div> </div> </div> </div> <!--GET a QUOTE MODAL --> <div class="modal fade" id="quoteForm" tabindex="-1" role="dialog" aria-labelledby="quoteForm" aria-hidden="true"> <div class="modal-dialog modal-lg modal-dialog-centered" role="document"> <div class="modal-content p-md-3"> <div class="modal-header"> <h4 class="modal-title">Request a <span class="text-primary">quote</span></h4> <button class="close" type="button" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <form action="#"> <div class="row"> <div class="form-group col-lg-6"> <label class="font-weight-bold text-small" for="firstname">First name<span class="text-primary ml-1">*</span></label> <input class="form-control" id="firstname" type="text" placeholder="Enter your first name" required="" /> </div> <div class="form-group col-lg-6"> <label class="font-weight-bold text-small" for="lastname">Last name<span class="text-primary ml-1">*</span></label> <input class="form-control" id="lastname" type="text" placeholder="Enter your last name" required="" /> </div> <div class="form-group col-lg-12"> <label class="font-weight-bold text-small" for="email">Email address<span class="text-primary ml-1">*</span></label> <input class="form-control" id="email" type="email" placeholder="Enter your email address" required="" /> </div> <div class="form-group col-lg-6"> <label class="font-weight-bold text-small" for="phone">Phone number <small class="small text-gray">optional</small></label> <input class="form-control" id="phone" type="tel" placeholder="Enter your phone number" /> </div> <div class="form-group col-lg-6"> <label class="font-weight-bold text-small" for="projecttype">Project type<span class="text-primary ml-1">*</span></label> <input class="form-control" id="projecttype" type="text" placeholder="Enter your project type" required="" /> </div> <div class="form-group col-lg-6"> <label class="font-weight-bold text-small" for="budget">Estimated budget<span class="text-primary ml-1">*</span></label> <input class="form-control" id="budget" type="text" placeholder="Enter your estimated budget" required="" /><small class="form-text text-muted">Project budget will be on <span class="text-dark">$</span></small> </div> <div class="form-group col-lg-6"> <label class="font-weight-bold text-small" for="timeframe">Time frame<span class="text-primary ml-1">*</span></label> <input class="form-control" id="timeframe" type="text" placeholder="Maximum time for the project" required="" /> </div> <div class="form-group col-lg-12"> <label class="font-weight-bold text-small" for="projectdetail">Project details<span class="text-primary ml-1">*</span></label> <textarea class="form-control" id="projectdetail" rows="5" placeholder="Provide a short brief about your project" required=""></textarea> </div> <div class="form-group col-lg-12"> <button class="btn btn-primary" type="button">Submit your request</button> </div> </div> </form> </div> </div> </div> </div> ... </body> </html>
Now we are done friends and please run your Laravel 8 project and see the Request A Quote Form. Also and If you have any kind of query or suggestion or any requirement then feel free to comment below.
Note: Friends, I just tell the basic setup and things, you can change the code according to your requirements. I will come with more Laravel 8 demos in my coming posts.
I will appreciate that if you will tell your views for this post. Nothing matters if your views will be good or bad.
Jassa
Thanks
Recent Comments