@php
$routeLink = $blade_data['routesLink'] ?? 'admin.users';
@endphp
@extends('admin.layouts.app')
@section('page-title', $blade_data['title'])
@section('breadcrumb')
@endsection
@section('content')
@if (isset($form_data->id))
@livewire($blade_data['blade_name'],['formData'=>$form_data])
@else
@livewire($blade_data['blade_name'])
@endif
@endsection