21 lines
557 B
PHP
21 lines
557 B
PHP
@extends('layout/template')
|
|
|
|
@section('content')
|
|
<h1>Watermark</h1>
|
|
@if ($errors->any())
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
<form method="post" enctype="multipart/form-data">
|
|
@csrf
|
|
<input type="file" name="files[]" class="form-control" >
|
|
<input type="submit" value="Upload Watermark" class="btn btn-outline-success">
|
|
</form>
|
|
|
|
@endsection
|
|
|