@extends('backend.layouts.layout-2') @if($edit) @section('page-title', trans('app.edit_albumImages')) @section('page-heading', trans('app.edit_albumImages')) @else @section('page-title', trans('app.add_albumImages')) @section('page-heading', trans('app.add_albumImages')) @endif @section('styles') @parent @endsection @section('scripts') @parent @endsection @section('content') @if($edit) {!! Form::open(['route' => ['albumImages.update',$albumImage->id], 'method' => 'PUT','files' => true, 'id' => 'page-form']) !!} @else {!! Form::open(['route' => 'albumImages.store', 'files' => true, 'id' => 'page-form']) !!} @endif
@lang('app.page_details')
@if($edit)
@endif
{!! Form::close() !!} @stop