@extends('layouts.admin') @section('content')

Update Package

@csrf @method('PUT')
@if($errors->has('name')) @endif
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if($subscription->identifier !== 'free')
@if($errors->has('price')) @endif
@if($errors->has('price'))

{{ $errors->first('price') }}

@endif
@if($errors->has('month_duration')) @endif
@if($errors->has('month_duration'))

{{ $errors->first('month_duration') }}

@endif
@if($errors->has('free_months')) @endif
@if($errors->has('free_months'))

{{ $errors->first('free_months') }}

@endif
@endif
@if($errors->has('can_chat'))

{{ $errors->first('can_chat') }}

@endif
@if($errors->has('can_audio_chat'))

{{ $errors->first('can_audio_chat') }}

@endif
@if($errors->has('can_video_chat'))

{{ $errors->first('can_video_chat') }}

@endif
@if($errors->has('profile_picture_limit')) @endif

Leave empty for unlimited pictures.

@if($errors->has('profile_picture_limit'))

{{ $errors->first('profile_picture_limit') }}

@endif
@endsection