@extends('adminlte::page') @section('css') @endsection @section('title', 'New plan') @section('content_header') @stop @section('content')
@if(Session::has('error'))

{{ Session::get('error') }}

@endif

Create Stripe plan

@if(Session::has('message'))

{{ Session::get('message') }}

@endif
@csrf
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('subtitle')) {{ $errors->first('subtitle') }} @endif
@if ($errors->has('slug')) {{ $errors->first('slug') }} @endif
@if ($errors->has('price')) {{ $errors->first('price') }} @endif
@if ($errors->has('interval_count')) {{ $errors->first('interval_count') }} @endif
@livewire('dashboard.stripe-packets.plan-features', ['post' => null])
@endsection