21 lines
620 B
PHP
21 lines
620 B
PHP
@extends('layouts.app')
|
|
|
|
@section('header')
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
|
Faculty Dashboard
|
|
</h2>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="max-w-7xl mx-auto pt-3 sm:px-6 lg:px-8">
|
|
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
|
|
<div class="p-6 text-gray-900">
|
|
Welcome, Faculty! Manage your tasks and profile here.
|
|
</div>
|
|
</div>
|
|
<div class="mt-6">
|
|
<a href="{{ route('profile.edit') }}" class="text-blue-500 underline">Edit Profile</a>
|
|
</div>
|
|
</div>
|
|
@endsection
|