@extends('admin.layout') @php use App\Models\Language; $selLang = Language::where('code', request()->input('language'))->first(); @endphp @if(!empty($selLang->language) && $selLang->language->rtl == 1) @section('styles') @endsection @endif @section('content')
{{__('Edit package')}}
{{__('Back')}}
@csrf

{{__('If price is 0 , than it will appear as free')}}

@php $permissions = $package->features; if (!empty($package->features)) { $permissions = json_decode($permissions, true); } @endphp
@if($package->is_trial == 1)
@else @endif

@endsection @section('scripts') @endsection