@extends('templates/modal') @section('modal_id', $modal_id) @section('title') @if ($mode == 'size') {{ __('Edit Settings for ') }} {{ucwords(preg_replace('/[-_]/', ' ', $size))}} @else {{ __('Edit Image') }} ({{$full_width}} x {{$full_height}}) @endif @endsection @section('main-tabs')
Size:
@if($mode == 'size')
{{ ucwords(str_replace('_', ' ', str_replace('-', ' ', $size))) }}
@else
Source Image
@foreach ($sizes as $name => $info) @if (strpos($name,'__')!==0)
{{ ucwords(str_replace('_', ' ', str_replace('-', ' ', $name))) }}
@endif @endforeach @endif
@endsection @section('editor') @endsection @section('bottom-bar') @if($mode != 'size') New Preset
Save Preset Delete Preset
@endif @endsection @section('sidebar-content')
@foreach($params as $paramSection => $paramSectionInfo)
{{__(ucwords(str_replace('-', ' ', $paramSection)))}}
@endforeach
@foreach($params as $paramSection => $paramSectionInfo) @endforeach
@endsection @section('sidebar-actions')
{{__('Reset All')}} {{__('Save Adjustments')}}
@endsection @section('script') @endsection