@extends('layouts.app') @section('title') Floating-Button @endsection @section('content')
@include('flash::message') @if ($errors->any())
{{ $errors->first() }}
@endif @include('flash::message') {{ Form::hidden('buttonUrl', url('floating-button'), ['class' => 'buttonUrl']) }} {{ Form::hidden('buttonCreateUrl', route('floating-button.store'), ['id' => 'buttonCreateUrl']) }} {{ Form::hidden('buttonLang', __('messages.common.delete'), ['id' => 'buttonLang']) }} @include('floating_button.create_modal') @include('floating_button.edit_modal')
@endsection