@extends('web.themes.shella.layouts.app') @section('content')

{{ __('Account') }}

@csrf @if(count($errors) > 0)
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ __('Log out') }}
@stop