Init(Core): Change repo
This commit is contained in:
58
resources/views/admin/subscribe-plans/create.blade.php
Normal file
58
resources/views/admin/subscribe-plans/create.blade.php
Normal file
@@ -0,0 +1,58 @@
|
||||
@extends('admin.layouts.app')
|
||||
@section('content')
|
||||
<div class="row">
|
||||
@include('admin.layouts.errors')
|
||||
|
||||
<div class="col-lg-6">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h4 class="card-title">افزودن پلن</h4>
|
||||
<div>
|
||||
<form action="{{ route('subscribe-plans.store') }}" method="post">
|
||||
@csrf
|
||||
|
||||
<div class="mb-4">
|
||||
<label for="">نام را وارد کنید</label>
|
||||
<input class="form-control" name="name" type="text" placeholder="نام">
|
||||
</div>
|
||||
|
||||
<div class="mb-4">
|
||||
<label for="">قیمت را وارد کنید</label>
|
||||
<input class="form-control" name="price" type="text" placeholder="قیمت">
|
||||
</div>
|
||||
|
||||
<div class="mb-4">
|
||||
<label for="">تعداد روز را وارد کنید</label>
|
||||
<input class="form-control" name="expired_day" type="text" placeholder="تعداد روز">
|
||||
</div>
|
||||
|
||||
<label for="">نوع ( تایپ)</label>
|
||||
<input class="form-control" name="type" type="text" placeholder="">
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<label for="">شناسه</label>
|
||||
<input class="form-control" name="transaction" type="text" placeholder="">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="custom-control custom-switch mb-2" dir="ltr">
|
||||
<input type="checkbox" class="custom-control-input" id="customSwitch1" name="is_free" checked="">
|
||||
<label class="custom-control-label" for="customSwitch1">رایگان؟</label>
|
||||
</div>
|
||||
|
||||
<div class="custom-control custom-switch mb-2" dir="ltr">
|
||||
<input type="checkbox" class="custom-control-input" id="customSwitch1" name="is_active" checked="">
|
||||
<label class="custom-control-label" for="customSwitch1">قعال؟</label>
|
||||
</div>
|
||||
|
||||
|
||||
<button type="submit" class="btn btn-primary">ثبت</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user