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

{{ __('Packages') }}

{{ __('Edit Package') }}

@csrf
@if ($errors->has('language_id'))

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
@endsection