@extends('layouts.admin') @section('title', '| Plans') @section('content')

{{ __('Create new plan') }}

{{ __('Create a Plan') }} {{ __('Plan will automaticaly create on the fly to the stripe dashboard') }}
{!! csrf_field() !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('price')) {{ $errors->first('price') }} @endif
@if ($errors->has('trial')) {{ $errors->first('trial') }} @endif
@if ($errors->has('interval')) {{ $errors->first('interval') }} @endif
@if ($errors->has('teams_limit')) {{ $errors->first('teams_limit') }} @endif

@endsection