@extends('admin.layouts.main') @section('title') Admin View @endsection @section('content')

User View

User View

@if($model->image) @endif
Name{{ $model->first_name.' '.$model->last_name }}
Email{{ $model->email }}
Country{{ $model->country }}
Image image
Status@if($model->status == 0)Inactive @else($model->status == 1)Active @endif
Created at{{ $model->created_at }}
@endsection