@extends('layout.layout') {{-- Style --}} @push('links') @endpush @inject('helper', 'Modules\Custom\Http\Helpers\FormHelper') {{-- Content --}} @section('content') @include('custom::component.reply-btn', ['url' => route('admin.event.show', $event->id)])
{{csrf_field()}} {{-- 審核狀態 --}}
@foreach($status->only(0, 2) as $key => $string)
status)) ? 'checked' : ''}} />
@endforeach @if($errors->has('status')) @foreach ($errors->get('status') as $error)
{{$error}}
@endforeach @endif
{{-- 備註 --}}
@if($errors->has('remark')) @foreach ($errors->get('remark') as $error)
{{$error}}
@endforeach @endif
@endsection