18 lines
711 B
PHP
18 lines
711 B
PHP
@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
|