@extends('template.master') @section('title', 'Add/Edit Group Subscription') @push('styles') @endpush @section('content')

Add/Edit Group Subscription

Back
@csrf @if(isset($groupSubscription) && !empty($groupSubscription->group_subscription_id)) @endif
@if($errors->has('subscription_id'))
{{ $errors->first('subscription_id') }}
@endif
@if($errors->has('contact_name'))
{{ $errors->first('contact_name') }}
@endif
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('country_code'))
{{ $errors->first('country_code') }}
@endif
@if($errors->has('phone_no'))
{{ $errors->first('phone_no') }}
@endif
@if($errors->has('number_of_subscription'))
{{ $errors->first('number_of_subscription') }}
@endif
@php $status = 0; if((isset($groupSubscription->group_subscription_status)) && @$groupSubscription->group_subscription_status == 1){ $status = 1; } @endphp
@if($errors->has('group_subscription_status'))
{{ $errors->first('group_subscription_status') }}
@endif
Cancel
@endsection @push('child-scripts') @endpush