@extends('layouts.app') @section('css')
@endsection @section('page-header')
{{ __('Edit Email Template') }}
{{ __('Admin') }}
{{ __('Email Templates') }}
{{ __('Edit Email') }}
@endsection @section('content')
{{ __('Edit Email Template') }}:
{{ $id->name }}
@method('PUT') @csrf
{{ __('Subject') }}
@error('subject')
{{ $errors->first('subject') }}
@enderror
{{ __('Email Message Body') }}
{!! $id->message !!}
@error('message')
{{ $errors->first('message') }}
@enderror
{{ __('Email Footer') }}
{!! $id->footer !!}
@error('footer')
{{ $errors->first('footer') }}
@enderror
{{ __('Return') }}
{{ __('Update') }}
@endsection @section('js') @endsection