@extends('admin/admin') @section('content')
{{__('Update Template')}}
@if (session()->has('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach

@endif
For Customizing the template, use ‘@’ symbol e.g. @customer_full_name@ will become ‘John Smith’
@csrf
@php $logo = $template_details->logo_path; $exp = explode('-',$logo); $logo_path = Helper::getLogoPath($exp[0]); $logo_position = $exp[1]; @endphp
@endsection @section('footer-scripts') @parent @endsection