@extends('backend.layout') @section('content')
{{ __('Update Footer Logo') }}
@csrf

@if (!empty($data->footer_logo)) logo @else ... @endif
{{ __('Choose Image') }}
@if ($errors->has('footer_logo'))

{{ $errors->first('footer_logo') }}

@endif
{{ __('Update Footer Background Image') }}
@csrf

@if (!empty($data->footer_background_image)) background image @else ... @endif
{{ __('Choose Image') }}
@if ($errors->has('footer_background_image'))

{{ $errors->first('footer_background_image') }}

@endif
@endsection