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

Dashboard

{{ isset($plan) ? 'Edit Plan' : 'Create New Plan' }}
{{--

Personal accounts list where admin can edit, update and delete their records.

--}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @if(isset($plan)) @method('PUT') @endif
@endsection