@extends('admin.layouts.master') @section('title', __('Identity Form')) @section('content')
@csrf
@php $newArr = ['Driving License', 'Passport', 'National ID']; @endphp @if (count($formExist) != count($newArr))

@lang('Identity Form')

@endif
@foreach ($forms as $key => $data) @endforeach
# @lang('Identity Type') @lang('Status') @lang('Action')
{{ $key + 1 }} {{ $data->name }} {{ $data->status == 0 ? 'Inactive' : 'Active' }}
@endsection @section('script') @endsection