| Server IP : 68.178.172.28 / Your IP : 216.73.216.32 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/storage/framework/views/ |
Upload File : |
<?php echo $__env->make('includes.header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>;
<main id="main" class="main">
<div class="pagetitle">
<h1>Gallery Form</h1>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item">Forms</li>
<li class="breadcrumb-item active">Gallery</li>
</ol>
</nav>
</div><!-- End Page Title -->
<section class="section">
<div class="card">
<div class="card-body">
<h5 class="card-title">Gallery</h5>
<!-- General Form Elements -->
<form action="<?php echo e(url('save-gallery')); ?>" method="post" enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<div class="row mb-3">
<label for="inputText" class="col-sm-2 col-form-label">Title</label>
<div class="col-sm-10">
<input type="text" name="title" class="form-control">
</div>
</div>
<div class="row mb-3">
<label for="inputDecription" class="col-sm-2 col-form-label">Description</label>
<div class="col-sm-10">
<input type="text" name="description" class="form-control">
</div>
</div>
<div class="row mb-3">
<label for="inputNumber" class="col-sm-2 col-form-label">Category</label>
<div class="col-sm-10">
<select class="form-control" name='category'>
<option value="" disabled selected>--Select--</option>
<option value="1">Holi</option>
<option value="2">Dussera</option>
</select>
</div>
</div>
<div class="row mb-3">
<label for="inputNumber" class="col-sm-2 col-form-label">File Upload</label>
<div class="col-sm-10">
<input class="form-control" name="image" type="file" id="formFile">
</div>
</div>
<div class="row mb-3">
<label class="col-sm-2 col-form-label">Submit Button</label>
<div class="col-sm-10">
<button type="submit" class="btn btn-primary">Submit Form</button>
</div>
</div>
</form><!-- End General Form Elements -->
</div>
</div>
</section>
</main><!-- End #main -->
<?php echo $__env->make('includes.footer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</body>
</html><?php /**PATH C:\xampp\htdocs\adminlaravel\resources\views/gallery.blade.php ENDPATH**/ ?>