@extends('layouts/main')
@section('body')
@include('layouts.navbar')
@if (session('success'))
{{ session('success') }}
@endif
@include('dashboard.my-account')
@if ($user->job)
@include('dashboard.my-job')
@endif
@if ($user->appliedJob)
@include('dashboard.applyed-job')
@endif
@include('dashboard.my-drivers')
@endsection