PHP Classes

File: resources/views/livewire/backend/admin/modal/view-admin.blade.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   resources/views/livewire/backend/admin/modal/view-admin.blade.php   Download  
File: resources/views/livewire/backend/admin/modal/view-admin.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: mtube
Application to share videos between users
Author: By
Last change:
Date: 2 years ago
Size: 548 bytes
 

Contents

Class file image Download
<x-modal>
    <x-slot name="title">
        <h3 class="text-lg font-medium text-gray-900">{{ __('Admin Details') }}</h3>
    </x-slot>
    <x-slot name="content">
        <div class="px-4 py-5 bg-white sm:p-6">
            <div class="flex justify-between">
                <p>{{ __('Name') }}</p>
                <p>{{ $name }}</p>
            </div>
            <div class="flex justify-between mt-4">
                <p>{{ __('Email Address') }}</p>
                <p>{{ $email }}</p>
            </div>
        </div>
    </x-slot>
</x-modal>