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