@extends('layouts/contentLayoutMaster') @section('title', 'Add Billing Plans') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
{{ csrf_field() }}
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif

@if($errors->has('amount'))

{{ $errors->first('amount') }}

@endif
@if($errors->has('description'))

{{ $errors->first('description') }}

@endif
@if($tasktypes)
    @foreach($tasktypes as $tasktype) {{-- @dd($tasktype) --}}
  • is_default == 1 ? 'checked' : '' }} value="{{ $tasktype->task_type }}"> {{ $tasktype->task_name }} [{{ $tasktype->task_type }}]
      @foreach($tasktype->verificationTypes as $verificationtype)
    • {{ $verificationtype->internal_name }} [{{ $verificationtype->name }}]
    • @endforeach
  • @endforeach
@endif
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection