@extends(Request::ajax() ? 'layouts.ajax-main' : 'layouts.main') @section('title'){{ _('Update Timezone') }} @endsection @section('page-title')Settings chevron_right Update Timezone @endsection @section('content')

{{ _('Update Timezone') }}

{{ _('Here you can update the timezone used throughout the panel, this will reflect on every time displayed on the panel.') }}

{{ csrf_field() }} {{ method_field('put') }}
    @foreach($timezones as $timezone)
  • {{ $timezone }}
  • @endforeach
@if ($errors->has('timezone')) {{ $errors->first('timezone') }} @endif
@endsection