Files
phpvms/resources/views/admin/awards/edit.blade.php
B.Fatih KOZ 09453becf8 Award Checks Update (#1376)
Add active/passive check for awards and update the handler to pass only active ones to the process when needed.
2022-01-10 15:49:50 -05:00

13 lines
414 B
PHP
Executable File

@extends('admin.app')
@section('title', "Edit \"$award->name\" Award")
@section('content')
<div class="card border-blue-bottom">
<div class="content">
{{ Form::model($award, ['route' => ['admin.awards.update', $award->id], 'method' => 'patch', 'autocomplete' => false]) }}
@include('admin.awards.fields')
{{ Form::close() }}
</div>
</div>
@endsection
@include('admin.awards.scripts')