33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
PHP
@extends('user-layouts.user_template')
|
||
@section('content')
|
||
<div class="content-wrapper" style="min-height: 916px;">
|
||
<!-- Content Header (Page header) -->
|
||
<section class="content-header">
|
||
<h1>
|
||
Dashboard
|
||
<small>Control panel</small>
|
||
</h1>
|
||
<ol class="breadcrumb">
|
||
<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
|
||
<li class="active">Dashboard</li>
|
||
</ol>
|
||
</section>
|
||
|
||
<!-- Main content -->
|
||
|
||
<section class="content">
|
||
@if(Auth::user()->email_is_verified == "0")
|
||
<div class="alert alert-warning alert-dismissible">
|
||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||
<h4><i class="icon fa fa-check"></i> To do!</h4>
|
||
Please verify your Email Address. <a href="{{ url('user/email-verify') }}">Click here</a>
|
||
</div>
|
||
<div class="text-center" id="homepage-logo">
|
||
@endif
|
||
<img src="{{asset('/public/images/logo.png')}}" class="img img-responsive" />
|
||
</div>
|
||
</section>
|
||
<!-- /.content -->
|
||
</div>
|
||
@endsection
|