@extends('layouts.master') @section('title') {{ __('gallery') }} @endsection @section('content')

{{ __('edit') . ' ' . __('gallery') }}


{!! Form::model($gallery, [ 'route' => ['gallery.update', $gallery->id], 'method' => 'post', 'class' => 'edit-form', 'novalidate' => 'novalidate', 'enctype' => 'multipart/form-data', 'data-success-function' => 'formSuccessFunction' ]) !!} @csrf
{!! Form::text('title', null, ['required', 'placeholder' => __('title'), 'class' => 'form-control']) !!}
{!! Form::textarea('description', null, [ 'rows' => '2', 'placeholder' => __('description'), 'class' => 'form-control', ]) !!}
{!! Form::select('session_year_id', $sessionYears, null, ['class' => 'form-control']) !!}
{{-- --}}

{{ __('view') }} {{ __('gallery') }}


{{ __('photo_gallery') }}

@foreach ($gallery->file as $file) @if ($file->type == 1)
image small
@endif @endforeach

{{ __('video_gallery') }}

@foreach ($gallery->file as $file) @if ($file->type == 2)
image small
@endif @endforeach
@endsection @section('script') @endsection