@extends('library-app.layout') @section('header') @endsection @section('content') @csrf
Product @if (isset($data->id)) Edit @else Add @endif
@if (isset($data->id))
@endif

Remark : The symbol "|" placed in front of the number will move the number downwards instead ( A|1 => A1 ). But if it is a two-digit number, use A|1|1 will be A11 and if you don't want the number to be moved downwards, just don't use the symbol at all.
[ ex. "A|1B|1|1C2D|1|12E" => A1B11C2D112E ]

@if(isset($data->image1) && $data->image1 != "") @endif
Upload Remove

Remark : Upload images type (.jpg), (.jpeg) or (.png) only

@if(isset($data->image2) && $data->image2 != "") @endif
Upload Remove

Remark : Upload images type (.jpg), (.jpeg) or (.png) only

@if(isset($data->image3) && $data->image3 != "") @endif
Upload Remove

Remark : Upload images type (.jpg), (.jpeg) or (.png) only

@if(isset($data->file_tds) && $data->file_tds != "")
download old file


@endif
Upload Remove

Remark : Upload file type (.pdf) only

@if(isset($data->file_sds) && $data->file_sds != "")
download old file


@endif
Upload Remove

Remark : Upload file type (.pdf) only

@endsection @section('script') @endsection