10.April 2026
This commit is contained in:
parent
a00c42e770
commit
f58c709945
208 changed files with 19280 additions and 2914 deletions
18
resources/views/admin/incentive/edit.blade.php
Normal file
18
resources/views/admin/incentive/edit.blade.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
<h4 class="font-weight-bold py-2 mb-2">
|
||||
{{ __('incentive.edit') }}: {{ $incentive->name }}
|
||||
</h4>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<form action="{{ route('admin_incentive_update', [$incentive->id]) }}" method="POST">
|
||||
@csrf
|
||||
@include('admin.incentive._form', ['incentive' => $incentive])
|
||||
<button type="submit" class="btn btn-success">{{ __('incentive.save') }}</button>
|
||||
<a href="{{ route('admin_incentive_show', [$incentive->id]) }}" class="btn btn-default">{{ __('incentive.cancel') }}</a>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
Loading…
Add table
Add a link
Reference in a new issue