@extends('front.company.layout_main') @section('header')

{{ trans('backpack::crud.edit') }} {{ $crud->entity_name }}

@endsection @section('content')
@if ($crud->hasAccess('list')) {{ trans('backpack::crud.back_to_all') }} {{ $crud->entity_name_plural }}

@endif {!! Form::open(array('url' => $crud->route.'/'.$entry->getKey(), 'method' => 'put', 'files'=>$crud->hasUploadFields('update', $entry->getKey()))) !!}

{{ trans('backpack::crud.edit') }}

@if(view()->exists('vendor.backpack.crud.form_content')) @include('vendor.backpack.crud.form_content') @else @include('crud::form_content', ['fields' => $crud->getFields('update', $entry->getKey())]) @endif
{!! Form::close() !!}
@endsection @section('after_scripts_gmaps') @endsection