@extends('layouts.app') @section('content')
@php $user = App\Models\User::select('id','name','email','companyLogo')->find($id); @endphp
@csrf
{{ $user->name }}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif @if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endsection @section('extrajs') {!! Html::script('assets/js/lockscreen.js') !!} @endsection