24 lines
1.1 KiB
PHP
24 lines
1.1 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 Economies') }}</h2>
|
||
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('economies.index')); ?>
|
||
|
|
||
|
</div>
|
||
|
<div class='card-body'>
|
||
|
<form action="{{ route('economies.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('ecomomy_nepali_name', 'ecomomy_nepali_name', 'Ecomomy Nepali Name') }}
|
||
|
</div>
|
||
|
<div class="col-md-12"><?php createButton('btn-primary btn-store', '', 'Submit'); ?>
|
||
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('economies.index')); ?>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
@endsection
|