@extends('layouts.app') @section('title') {{ __('messages.call_log.new') }} @endsection @section('page_css') {{-- --}} @endsection @section('header_toolbar')

@yield('title')

{{ __('messages.common.back') }}
@endsection @section('content')
@include('layouts.errors')
{{ Form::hidden('callLogUrl', route('call_logs.index'), ['class' => 'callLogUrl']) }} {{ Form::hidden('utilsScript', asset('assets/js/int-tel/js/utils.min.js'), ['class' => 'utilsScript']) }} {{ Form::hidden('isEdit', false, ['class' => 'isEdit']) }} {{ Form::open(['route' => 'call_logs.store','id' => 'createCallLogForm']) }} @include('call_logs.fields') {{ Form::close() }}
@endsection {{--let callLogUrl = "{{ route('call_logs.index') }}";--}} {{--let utilsScript = "{{asset('assets/js/int-tel/js/utils.min.js')}}";--}} {{--let isEdit = false;--}} {{-- --}} {{-- --}}