Blame view
resources/views/admin/reclames/edit.blade.php
401 Bytes
dd87a3ce4 Реклама-блок, обн... |
1 2 3 4 |
@extends('layout.admin', ['title' => 'Админка - Редактирование рекламы']) @section('content') <form method="POST" action="{{ route('admin.update-reclames', ['reclame' => $reclame->id]) }}" enctype="multipart/form-data"> |
32cbe7736 Обновление блейдо... |
5 6 7 8 |
@csrf @isset($reclame) @method('PUT') @endisset |
dd87a3ce4 Реклама-блок, обн... |
9 10 11 |
@include('admin.reclames.form') </form> @endsection |