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

Create Plan

@csrf
Title
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Durations (In Months)
@if ($errors->has('duration'))
{{ $errors->first('duration') }}
@endif
Price
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
Description
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@endsection