@extends('admin.layout') @section('content')

{{ __('Basic Information') }}

{{ __('Update Basic Information') }}

@csrf
@if ($errors->has('website_title'))

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

@endif

{{ __('Upload 40X40 (Pixel) Size image or Squre size image for best quality. Only jpg, jpeg, png image is allowed.') }}

@if ($errors->has('fav_icon'))

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

@endif

{{ __('Upload 150X40 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

@if ($errors->has('header_logo'))

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

@endif

{{ __('Upload 1920X390 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

@if ($errors->has('breadcrumb_image'))

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

@endif
@endsection