123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- @extends('modal_pages.base')
- <style>
- .listFlag{
- height: 20px;
- border-radius: 50%;
- width: 20px;
- margin-right: 5px;
- }
- .btn1{
- background-color: #141639c4 !important;
- color:white !important;
- border-radius: 20px;
- box-shadow:none !important;
- }
- .btn1:hover{
- background: #ffff !important;
- color: #141639c4 !important;
- border-radius: 20px;
- border: 1px solid #141639c4;
- }
- .box-typical {
- font-size: 13px !important;
- }
- .box-typical {
- -webkit-border-radius: 4px;
- border-radius: 4px;
- background: #fff;
- border: solid 1px #d8e2e7;
- margin: 0 0 20px;
- }
- .box-white {
- background: #fff;
- border-radius: 3px;
- padding: 15px 20px;
- font-size: 13px;
- }
- .btn.btn-warning {
- background-color: #f29824 !important;
- border-color: #f29824 !important;
- color: #ffffff !important;
- }
- .text-right {
- text-align: right!important;
- }
- .cancel_btn_new {
- background-color: #ffc107 !important;
- border-width: 1px !important;
- border-color: #ffc107 !important;
- color: #fff !important;
- border-radius: 30px !important;
- padding: 4px 12px !important;
- height: 28px;
- display: inline-block;
- }
- .pretty {
- font-size: 14px;
- }
- .form-group {
- margin-bottom: 1rem;
- }
- .form-label {
- color: #5d5d5d !important;
- font-size: 12px;
- font-weight: 600;
- }
- .btn.btn-danger {
- background-color: #fa424a !important;
- border-color: #fa424a !important;
- color: #ffffff !important;
- }
- .row {
- display: -ms-flexbox;
- display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- margin-right: -15px;
- margin-left: -15px;
- }
- .form-control {
- padding: 5px 0.75rem !important;
- }
- </style>
- @section('main')
- <form class="modal-form" action="{{ url()->current() }}" method="POST">
- {{ csrf_field() }}
- <input type="hidden" name="id" value="{{$requirements->id}}">
- <input type="hidden" name="requirement_source" value="others"/>
- <div class="box-typical" id="others" style="padding: 10px 15px 0px; margin: 10px 15px 15px; border-radius: .25rem;">
- <div class="row">
- <div class="col">
- <span style="font-size: 13px; font-weight: 600; display: block; margin-bottom: 5px;">Add Document requirements</span>
- </div>
-
- </div>
- <div class="others_div mt-2" style="border-top: 1px solid #e9f0f3;">
- <div class="row">
-
- <div class="col-md-6 form-group mt-2">
- <label class="form-label">Requirement</label>
- <textarea class="form-control requirement_title" name="requirement_title" rows="1">{{$requirements->requirement_title}}</textarea>
- </div>
- <div class="col-md-5 form-group mt-2">
- <label class="form-label">Requirement Type</label>
- <div class="d-flex">
- <div class="pretty p-default p-curve">
- <input class="need_upload" type="radio" name="need_upload" @if($requirements->need_upload==1) checked @endif value="1" />
- <div class="state p-primary-o">
- <label>
- <small>Document</small>
- </label>
- </div>
- </div>
- <div class="pretty p-default p-curve">
- <input class="need_upload" type="radio" name="need_upload" @if($requirements->need_upload==0) checked @endif value="0" />
- <div class="state p-primary-o">
- <label>
- <small>Information</small>
- </label>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
-
- </div>
- <div class="row">
- <div class="col">
- <button type="submit" class="btn btn-inline pull-right submit_button">
- Save
- </button>
- {{-- <button type="button" class="btn btn-inline pull-right btn-submit cancel_btn_new" data-dismiss="modal">
- Cancel
- </button> --}}
- </div>
- </div>
- </form>
- <script>
- $(function(){
- $('#modal_page_footer').hide();
- });
- </script>
- @endsection
|