@extends('layouts.admin') @section('title') @lang('Email Template') @endsection @section('breadcrumb')

@lang('Edit Email Template')

@lang('Back')
@endsection @section('content')
{{ __('Edit Email Template Form') }}
@csrf @include('admin.partials.form-both')

{{ __('Use the BB codes, it show the data dynamically in your emails.') }}


@if($data->codes) @foreach ($data->codes as $code => $meaning) @endforeach @endif
{{ __('Meaning') }} {{ __('BB Code') }}
{{ __($meaning) }} {{'{'.$code.'}'}}
@if (access('template update'))
@endif
@endsection @push('script') @endpush