@extends('dashboard.layouts.master') @section('title') Opet dashboard @endsection @section('content')
@include('dashboard.layouts.nav') @include('dashboard.layouts.aside')
@csrf

About

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('success'))
{{Session::get('success')}}
@endif
@endsection