@extends('layouts.user')
{{-- Web site Title --}}
@section('title')
{{ $title }}
@stop
{{-- Content --}}
@section('content')
@include('user/'.$type.'/_form')
@if($user_data->inRole('admin'))
{{trans('profile.history')}}
@foreach($emailTemplate->revisionHistory as $history )
- {{ $history->userResponsible()->first_name }} changed {{ $history->fieldName() }}
from {{ $history->oldValue() }} to {{ $history->newValue() }}
@endforeach
@endif
@stop