@extends('layouts.app')
@section('title', ($plan->id?'Edit':'Create').' Plan')
@push('styles')
@endpush
@section('content')
{{ $plan->id ? 'Edit Plan' : 'Create Plan' }}
Back
@if ($errors->any())
@foreach ($errors->all() as $e)- {{ $e }}
@endforeach
@endif
@endsection