18 lines
619 B
PHP
18 lines
619 B
PHP
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
<h4 class="font-weight-bold py-2 mb-2">
|
|
{{ __('incentive.create') }}
|
|
</h4>
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<form action="{{ route('admin_incentive_store') }}" method="POST">
|
|
@csrf
|
|
@include('admin.incentive._form')
|
|
<button type="submit" class="btn btn-success">{{ __('incentive.save') }}</button>
|
|
<a href="{{ route('admin_incentives') }}" class="btn btn-default">{{ __('incentive.cancel') }}</a>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|