@extends('layouts.load') @section('content')
@include('includes.admin.form-error')
{{csrf_field()}} @php $mysqli = new \mysqli("localhost", "shopzpre_user", "dyu4JT+qtW@K", $data->db_name); $email=''; $query = "SELECT * FROM admins ORDER by ID ASC LIMIT 1"; if ($result = $mysqli->query($query)) { /* fetch object array */ while ($row = $result->fetch_row()) { $email = $row[2]; } /* free result set */ $result->close(); } /* close connection */ $mysqli->close(); @endphp

{{ __('Email Address') }} *

{{ __('Password') }} *

@endsection @section('scripts') @endsection