@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
@csrf
{{ _trans('common.Add New Plan') }}
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('subtitle'))
{{ $errors->first('subtitle') }}
@endif
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
@if ($errors->has('duration_type'))
{{ $errors->first('duration_type') }}
@endif
@if ($errors->has('is_popular'))
{{ $errors->first('is_popular') }}
@endif
@if ($errors->has('status_id'))
{{ $errors->first('status_id') }}
@endif
{{ _trans('common.Add Limitation') }}
@if ($errors->has('limitations.0'))
{{ $errors->first('limitations.0') }}
@endif
@if ($errors->has('limitations.1'))
{{ $errors->first('limitations.1') }}
@endif
@if ($errors->has('limitations.2'))
{{ $errors->first('limitations.2') }}
@endif
@if ($errors->has('limitations.3'))
{{ $errors->first('limitations.3') }}
@endif
@if (@$data['url'])
@endif
@endsection