34 lines
1.7 KiB
PHP
34 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('Edit Horoscope') }}</h2>
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('horoscope.index')); ?>
|
|
|
|
</div>
|
|
<div class='card-body'>
|
|
<form action="{{ route('horoscope.update', [$data->horoscope_id]) }}" id="updateCustomForm" method="POST">
|
|
@csrf <input type=hidden name='horoscope_id' value='{{ $data->horoscope_id }}' />
|
|
<div class="row">
|
|
<div class="col-lg-6">{{ createText('title', 'title', 'Title', '', $data->title) }}
|
|
</div>
|
|
<div class="col-lg-6">
|
|
{{ createText('title_nepali', 'title_nepali', 'Title Nepali', '', $data->title_nepali) }}
|
|
</div>
|
|
<div class="col-lg-12 pb-2">
|
|
{{ createTextarea('description', 'description ckeditor-classic', 'Description', $data->description) }}
|
|
</div>
|
|
<div class="col-lg-6 pb-2">
|
|
{{ createImageInput('thumb', 'Thumb','',$data->thumb) }}
|
|
</div>
|
|
<div class="col-lg-6 pb-5">
|
|
{{ createImageInput('image', 'Image','',$data->image) }}
|
|
</div>
|
|
<div class="col-md-12"><?php createButton('btn-primary btn-update', '', 'Submit'); ?>
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('horoscope.index')); ?>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|