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

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

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

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

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

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

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

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

@endif
@php $billing_verification_tasks = explode(',', $billingplans->billing_verification_tasks); @endphp @if($verificationtypes)
    @foreach($verificationtypes as $verification)
  • name, $billing_verification_tasks) ? 'checked' : '' }} type="checkbox" id="verifications_{{ $verification->id }}" name="billing_verification_tasks[]" value="{{ $verification->name }}"> {{ $verification->name }}
  • @endforeach
@endif
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection