31 lines
1.4 KiB
PHP
31 lines
1.4 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 Horoscope') }}</h2>
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('horoscope.index')); ?>
|
|
|
|
</div>
|
|
<div class='card-body'>
|
|
<form action="{{ route('horoscope.store') }}" id="storeCustomForm" method="POST">
|
|
@csrf
|
|
<div class="row">
|
|
<div class="col-lg-6">{{ createText('title', 'title', 'Title') }}
|
|
</div>
|
|
<div class="col-lg-6">{{ createText('title_nepali', 'title_nepali', 'Title Nepali') }}
|
|
</div>
|
|
<div class="col-lg-6">{{ createImageInput('thumb', 'Thumb') }}
|
|
</div>
|
|
<div class="col-lg-6">{{ createImageInput('image', 'Image') }}
|
|
</div>
|
|
<div class="col-lg-12 pb-2">
|
|
{{ createTextarea('description', 'description ckeditor-classic', 'Description') }}
|
|
</div>
|
|
<div class="col-md-12"><?php createButton('btn-primary btn-store', '', 'Submit'); ?>
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('horoscope.index')); ?>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|