📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 03:00:09
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
resources
/
views
/
frontend
/
candidate-dashboard
📍 /home/orkouolp/web/testing.orkobd/laravel/resources/views/frontend/candidate-dashboard
🔄 Refresh
✏️
Editing: dashboard.blade.php
Writable
@extends('frontend.layouts.master') @section('contents') <section class="section-box mt-75"> <div class="breacrumb-cover"> <div class="container"> <div class="row align-items-center"> <div class="col-lg-12"> <h2 class="mb-20">Dashboard</h2> <ul class="breadcrumbs"> <li><a class="home-icon" href="{{ url('/') }}">Home</a></li> <li>Dashboard</li> </ul> </div> </div> </div> </div> </section> <section class="section-box mt-120"> <div class="container"> <div class="row"> @include('frontend.candidate-dashboard.sidebar') <div class="col-lg-9 col-md-8 col-sm-12 col-12 mb-50"> <div class="content-single"> <h3 class="mt-0 mb-0 color-brand-1">Dashboard</h3> <div class="dashboard_overview"> <div class="row"> <div class="col-lg-4 col-md-6"> <div class="dash_overview_item bg-info-subtle"> <h2>12 <span>job applied</span></h2> <span class="icon"><i class="fas fa-briefcase"></i></span> </div> </div> <div class="col-lg-4 col-md-6"> <div class="dash_overview_item bg-danger-subtle"> <h2>12 <span>job applied</span></h2> <span class="icon"><i class="fas fa-briefcase"></i></span> </div> </div> <div class="col-lg-4 col-md-6"> <div class="dash_overview_item bg-warning-subtle"> <h2>12 <span>job applied</span></h2> <span class="icon"><i class="fas fa-briefcase"></i></span> </div> </div> </div> @if(!isCandidateProfileComplete()) <div class="row"> <div class="col-12 mt-30"> <div class="dash_alert_box p-30 bg-danger rounded-4 d-flex flex-wrap"> <span class="img"> <img src="{{ asset(auth()->user()->image) }}" alt="alert"> </span> <div class="text"> <h4>Please setup your Profile First</h4> <p> You cannot access all the features of the website if you don't setup your account first. Make sure you setup your <b style="font-weight:bold;">"Basic", "Profile" and "Account Setting"</b> Data. </p> </div> <a href="{{ route('candidate.profile.index') }}" class="btn btn-default rounded-1">Edit Profile</a> </div> </div> </div> @endif </div> </div> </div> </div> </div> </section> <div class="mt-120"></div> @endsection
💾 Save Changes
❌ Cancel