@extends('layouts.master') @section('title') @lang('Title') @endsection @section('css') @endsection @section('content')
Our Team
@if ($message = Session::get('success'))
{{ $message }}
@endif
{{ csrf_field() }} {{ method_field('PUT') }} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @php $ourteamtype=ourteamtype(); @endphp
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif
@php // $file_array=array(); $fileData = []; // Initialize as an array before appending $fileData = getGalleryFiles($resgallery); // $fileName = json_encode($file_array); @endphp
@endsection @section('script') @include('admin.dropzone-single-edit') @endsection