35 lines
1.7 KiB
PHP
35 lines
1.7 KiB
PHP
@extends('backend.template')
|
|
@section('content')
|
|
<div class='card'>
|
|
<div class='card-header d-flex justify-content-between align-items-center'>
|
|
<h2 class="">{{ label('Add Testimonials') }}</h2>
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('testimonials.index')); ?>
|
|
|
|
</div>
|
|
<div class='card-body'>
|
|
<form action="{{ route('testimonials.store') }}" id="storeCustomForm" method="POST">
|
|
@csrf
|
|
<div class="row">
|
|
{{-- <div class="col-lg-6">{{ createText('video_url', 'video_url', 'Video Url') }}
|
|
</div> --}}
|
|
<div class="col-lg-12 pb-2">
|
|
<label for="video">Choose a video:</label>
|
|
<input type="file" id="video" name="video_url" accept="video/*">
|
|
</div>
|
|
|
|
<div class="col-lg-6">{{ createText('review', 'review', 'Review') }}
|
|
</div>
|
|
<div class="col-lg-6">{{ createText('name', 'name', 'Name') }}
|
|
</div>
|
|
<div class="col-lg-6">{{ createText('designation', 'designation', 'Designation') }}
|
|
</div>
|
|
<div class="col-lg-12 pb-2">{{ createPlainTextArea('remarks', 'remarks ', 'Remarks') }}
|
|
</div> <br>
|
|
<div class="col-md-12"><?php createButton('btn-primary btn-store', '', 'Submit'); ?>
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('testimonials.index')); ?>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|