12 lines
242 B
PHP
12 lines
242 B
PHP
@extends('profilelayout')
|
|
@section('content')
|
|
|
|
uim
|
|
|
|
<form action="add" method="post" enctype="multipart/form-data">
|
|
{!! csrf_field() !!}
|
|
<input type="file" name="file">
|
|
<input type="submit">
|
|
</form>
|
|
|
|
@endsection |