@extends('profile.index') @section('title', getSetting('APPLICATION_NAME') . ' | ' . $page) @section('profile-content') @include('include.message')
@csrf
{{ __('Name') }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ __('Email') }}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ __('Save') }}
{{ __('Back') }}
@endsection