@extends('layout.layout') {{-- Style --}} @push('links') @endpush {{-- Content --}} @section('content') @include('custom::component.reply-btn', ['url' => $back_route])
@csrf
@php $status_id = old('status_id',isset($model)?$model->status_id:''); @endphp @if ($errors->has('status_id')) @foreach($errors->get('status_id') as $error)
{{ $error }}
@endforeach @endif
@php $activity_id = old('activity_id',isset($model)?$model->activity_id:''); @endphp @if ($errors->has('activity_id')) @foreach($errors->get('activity_id') as $error)
{{ $error }}
@endforeach @endif
@if ($errors->has('title')) @foreach($errors->get('title') as $error)
{{ $error }}
@endforeach @endif
@if ($errors->has('content')) @foreach($errors->get('content') as $error)
{{ $error }}
@endforeach @endif
@endsection {{-- Script --}} @push('scripts') @endpush