@extends('layouts.master')
@section('title', 'Profile')
@section('content')
@include('layouts.partials.breadcrumbs', ['breadcrumbs' => [
['url' => route('dashboard'), 'title' => __('Home')],
['url' => route('profile.view'), 'title' => __('Profile')]
]])
@include('layouts.partials.messages')
{{ ucfirst($role_name) .__(" Profile") }}
@endsection