@extends('template.master') @section('title', 'Subscription Management') @section('content')

Refferral Settings

@if(session()->has('message'))
{{ session()->get('message') }}
@endif @if(session()->has('message_wr'))
{{ session()->get('message_wr') }}
@endif
@csrf
@foreach($errors->get('subscription_id') as $error)
{{ $error }}
@endforeach
@if($errors->has('monthly.type'))
{{ $errors->first('monthly.type') }}
@endif
@if($errors->has('monthly.amount'))
{{ $errors->first('monthly.amount') }}
@endif
@if($errors->has('yearly.type'))
{{ $errors->first('yearly.type') }}
@endif
@if($errors->has('yearly.amount'))
{{ $errors->first('yearly.amount') }}
@endif

Filters

@if($errors->has('yearly.type'))
{{ $errors->first('yearly.type') }}
@endif
Subscription Monthly Type Monthly Amount Yearly Type Yearly Amount Start Date End Date
@endsection @push('child-scripts') @endpush