@extends('layouts/contentLayoutMaster') @section('title', 'Create Verification Type') @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('internal_name'))

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

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

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

@endif
@if ($business_models) @foreach ($business_models as $business_model)
  • {{ $business_model->name }}
@endforeach @endif
@if ($errors->has('description'))

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

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

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

@endif
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection